Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
DazaSeal
GitHub Repository: DazaSeal/Lunanom
Path: blob/master/node_modules/minimist/test/whitespace.js
334 views
1
var parse = require('../');
2
var test = require('tape');
3
4
test('whitespace should be whitespace' , function (t) {
5
t.plan(1);
6
var x = parse([ '-x', '\t' ]).x;
7
t.equal(x, '\t');
8
});
9
10