1
1
#!/usr/bin/env node
2
- var nopt = require ( '../lib/nopt' )
3
- var path = require ( 'path' )
4
- var types = { num : Number ,
2
+ const nopt = require ( '../lib/nopt' )
3
+ const path = require ( 'path' )
4
+ console . log ( 'parsed' , nopt ( {
5
+ num : Number ,
5
6
bool : Boolean ,
6
7
help : Boolean ,
7
8
list : Array ,
@@ -13,8 +14,8 @@ var types = { num: Number,
13
14
config : Boolean ,
14
15
length : Number ,
15
16
file : path ,
16
- }
17
- var shorthands = { s : [ '--str' , 'astring' ] ,
17
+ } , {
18
+ s : [ '--str' , 'astring' ] ,
18
19
b : [ '--bool' ] ,
19
20
nb : [ '--no-bool' ] ,
20
21
tft : [ '--bool-list' , '--no-bool-list' , '--bool-list' , 'true' ] ,
@@ -25,32 +26,4 @@ var shorthands = { s: ['--str', 'astring'],
25
26
c : [ '--config' ] ,
26
27
l : [ '--length' ] ,
27
28
f : [ '--file' ] ,
28
- }
29
- var parsed = nopt ( types
30
- , shorthands
31
- , process . argv
32
- , 2 )
33
-
34
- console . log ( 'parsed' , parsed )
35
-
36
- if ( parsed . help ) {
37
- console . log ( '' )
38
- console . log ( 'nopt cli tester' )
39
- console . log ( '' )
40
- console . log ( 'types' )
41
- console . log ( Object . keys ( types ) . map ( function M ( t ) {
42
- var type = types [ t ]
43
- if ( Array . isArray ( type ) ) {
44
- return [ t , type . map ( function ( mappedType ) {
45
- return mappedType . name
46
- } ) ]
47
- }
48
- return [ t , type && type . name ]
49
- } ) . reduce ( function ( s , i ) {
50
- s [ i [ 0 ] ] = i [ 1 ]
51
- return s
52
- } , { } ) )
53
- console . log ( '' )
54
- console . log ( 'shorthands' )
55
- console . log ( shorthands )
56
- }
29
+ } , process . argv , 2 ) )
0 commit comments