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
@@ -0,0 +1,14 @@
var optimist = require('../');
var test = require('tap').test;
test('parse with modifier functions' , function (t) {
t.plan(1);
var argv = optimist().boolean('b').parse([ '-b', '123' ]);
t.deepEqual(fix(argv), { b: true, _: ['123'] });
});
function fix (obj) {
delete obj.$0;
return obj;
}