Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
29
node_modules/nopt/bin/nopt.js
generated
vendored
Executable file
29
node_modules/nopt/bin/nopt.js
generated
vendored
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env node
|
||||
const nopt = require('../lib/nopt')
|
||||
const path = require('path')
|
||||
console.log('parsed', nopt({
|
||||
num: Number,
|
||||
bool: Boolean,
|
||||
help: Boolean,
|
||||
list: Array,
|
||||
'num-list': [Number, Array],
|
||||
'str-list': [String, Array],
|
||||
'bool-list': [Boolean, Array],
|
||||
str: String,
|
||||
clear: Boolean,
|
||||
config: Boolean,
|
||||
length: Number,
|
||||
file: path,
|
||||
}, {
|
||||
s: ['--str', 'astring'],
|
||||
b: ['--bool'],
|
||||
nb: ['--no-bool'],
|
||||
tft: ['--bool-list', '--no-bool-list', '--bool-list', 'true'],
|
||||
'?': ['--help'],
|
||||
h: ['--help'],
|
||||
H: ['--help'],
|
||||
n: ['--num', '125'],
|
||||
c: ['--config'],
|
||||
l: ['--length'],
|
||||
f: ['--file'],
|
||||
}, process.argv, 2))
|
Loading…
Add table
Add a link
Reference in a new issue