UNPKG

@thi.ng/args

Version:

Declarative, functional CLI argument/options parser, app framework, arg value coercions, multi/sub-commands, usage generation, error handling etc.

22 lines (21 loc) 266 B
const DEFAULT_THEME = { default: 95, command: 92, error: 91, hint: 90, multi: 90, param: 96, required: 33 }; class Tuple { constructor(value) { this.value = value; } deref() { return this.value; } } export { DEFAULT_THEME, Tuple };