UNPKG

args-json

Version:

Zero-dependency descriptively typed command-line argument parser

8 lines (5 loc) 170 B
import type { On } from "./types/On.ts"; const onValues = new Set(["1", "true", "on"]); export function isOn(x: unknown): x is On { return onValues.has(String(x)); }