Skip to content

Commit

Permalink
remove trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Jun 25, 2013
1 parent 84c0370 commit 6ff0fa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "minimist",
"version": "0.0.0",
"version": "0.0.1",
"description": "parse argument options",
"main": "index.js",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions test/parse.js
Expand Up @@ -49,7 +49,7 @@ test('nums', function (t) {
'-z', '1e7',
'-w', '10f',
'--hex', '0xdeadbeef',
'789',
'789'
]);
t.deepEqual(argv, {
x : 1234,
Expand Down Expand Up @@ -208,7 +208,7 @@ test('nested dotted objects', function (t) {
quux : {
quibble : 5,
o_O : true
},
}
});
t.same(argv.beep, { boop : true });
t.end();
Expand Down

0 comments on commit 6ff0fa0

Please sign in to comment.