Add section for resources only

This commit is contained in:
Phillip Wittrock
2017-01-06 16:26:23 -08:00
parent cc12b16d99
commit 0648c4872e
1249 changed files with 129683 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env node
var argv = require('optimist')
.string('x', 'y')
.argv
;
console.dir([ argv.x, argv.y ]);
/* Turns off numeric coercion:
./node string.js -x 000123 -y 9876
[ '000123', '9876' ]
*/