0649bd8119
* Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
var optimist = require('../');
|
|
var test = require('tap').test;
|
|
|
|
test('whitespace should be whitespace' , function (t) {
|
|
t.plan(1);
|
|
var x = optimist.parse([ '-x', '\t' ]).x;
|
|
t.equal(x, '\t');
|
|
});
|