租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
194 B

2 months ago
  1. 'use strict';
  2. var parse = require('../');
  3. var test = require('tape');
  4. test('whitespace should be whitespace', function (t) {
  5. t.plan(1);
  6. var x = parse(['-x', '\t']).x;
  7. t.equal(x, '\t');
  8. });