%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/minimist/test/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/minimist/test/whitespace.js |
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');
});