All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.minimist.test.whitespace.js Maven / Gradle / Ivy

The newest version!
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');
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy