• File: undef.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/object-inspect/test/undef.js
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 302 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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 }'
    );
});