Preview: undef.js
Size: 302 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/object-inspect/test/undef.js
var test = require('tape');
var inspect = require('../');
var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null };
test('undef and null', function (t) {
t.plan(1);
t.equal(
inspect(obj),
'{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }'
);
});
Directory Contents
Dirs: 1 × Files: 18