swc/bundler/tests/.cache/deno/445f0f6ca18de28c77eaa54e49643160d671395e.ts
강동윤 fec189f2f3
fix(bundler): Fix stack overflow on Windows (#1464)
bundler:
 - Prevent stack overflow. (denoland/deno#9752)

testing:
 - Bump version
 - Fix handling of paths on windows.

testing_macros:
 - Bump version
 - Correctly ignore files.
2021-03-22 19:42:42 +09:00

22 lines
530 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/flags/types/boolean.ts
import type { ITypeHandler, ITypeInfo } from "../types.ts";
/** Boolean type handler. Excepts `true`, `false`, `1`, `0` */
export const boolean: ITypeHandler<boolean> = (
{ label, name, value, type }: ITypeInfo,
): boolean => {
if (~["1", "true"].indexOf(value)) {
return true;
}
if (~["0", "false"].indexOf(value)) {
return false;
}
throw new Error(
`${label} "${name}" must be of type "${type}", but got "${value}".`,
);
};