projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ab620dc5e4dc398a8e7531b8913bfc0416ebcd4e
[platform/framework/web/crosswalk-tizen.git]
/
1
var parse = require('../');
2
var test = require('tape');
3
4
test('parse with modifier functions' , function (t) {
5
t.plan(1);
6
7
var argv = parse([ '-b', '123' ], { boolean: 'b' });
8
t.deepEqual(argv, { b: true, _: [123] });
9
});