astro-ghostcms/.pnpm-store/v3/files/81/a8d29819b3b436af33113e12a2e...

12 lines
237 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var parse = require('../');
var test = require('tape');
test('parse with modifier functions', function (t) {
t.plan(1);
var argv = parse(['-b', '123'], { boolean: 'b' });
t.deepEqual(argv, { b: true, _: [123] });
});