ccc-tnt-psd2ui/npm-packages/mac-v3.4.+/minimist/test/parse_modified.js

12 lines
237 B
JavaScript
Raw Normal View History

2023-09-06 01:51:55 +00:00
'use strict';
2023-07-24 03:13:08 +00:00
var parse = require('../');
var test = require('tape');
2023-09-06 01:51:55 +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
});