Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
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'); });