ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/minimist/test/parse_modified.js

10 lines
238 B
JavaScript
Raw Normal View History

2023-07-24 03:13:08 +00:00
var parse = require('../');
var test = require('tape');
2023-07-27 07:04:13 +00:00
test('parse with modifier functions' , function (t) {
t.plan(1);
var argv = parse([ '-b', '123' ], { boolean: 'b' });
t.deepEqual(argv, { b: true, _: [123] });
2023-07-24 03:13:08 +00:00
});