UNPKG

args-json

Version:

Zero-dependency descriptively typed command-line argument parser

7 lines (6 loc) 153 B
export function isKey(x: string) { return ( (x.startsWith("-") && x.length === 2 && x !== "--") || (x.startsWith("--") && x.length > 2) ); }