add /docs/resources-reference/v1.7/

This commit is contained in:
Andrew Chen
2017-07-26 15:34:14 -07:00
parent 036f35b891
commit d0be9edb08
769 changed files with 120668 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' ]
*/