wishthis/node_modules/minimist/test/parse_modified.js

12 lines
237 B
JavaScript
Raw Normal View History

2023-03-12 09:52:00 +00:00
'use strict';
2022-01-21 08:28:41 +00:00
var parse = require('../');
var test = require('tape');
2023-03-12 09:52:00 +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] });
2022-01-21 08:28:41 +00:00
});