mightyscape-1.2/extensions/fablabchemnitz/svgo_output/node_modules/minimist/test/whitespace.js

9 lines
191 B
JavaScript
Raw Normal View History

2022-11-06 01:33:32 +01:00
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');
});