Update node_modules.

This commit is contained in:
Yang Chen
2020-04-01 00:56:37 +11:00
parent 0159db621d
commit a3b0e6d6d8
21 changed files with 1271 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
var parse = require('../');
var test = require('tape');
test('whitespace should be whitespace' , function (t) {
t.plan(1);
var x = parse([ '-x', '\t' ]).x;
t.equal(x, '\t');
});