Files
vps-management-bot/projects/status-panel/node_modules/object-inspect/test/undef.js

13 lines
302 B
JavaScript
Raw Normal View History

2026-03-21 01:10:53 +08:00
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 }'
);
});