swc/crates/swc_bundler/tests/.cache/deno/b26bae21ebd52e13155706a0b4bfe7776747b74a.ts
2021-11-09 20:42:49 +09:00

10 lines
281 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/flags/types/string.ts
import type { ITypeHandler, ITypeInfo } from "../types.ts";
/** String type handler. Excepts any value. */
export const string: ITypeHandler<string> = ({ value }: ITypeInfo): string => {
return value;
};