Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../uploads/../../../../instantly.picotech.app/homes/../../wa.picotech.app/public_html/node_modules/escape-html/.././object-inspect/.github/../test
الملفات الموجودة في هذا الـ Path:
.
..
bigint.js
browser
circular.js
deep.js
element.js
err.js
fakes.js
fn.js
global.js
has.js
holes.js
indent-option.js
inspect.js
lowbyte.js
number.js
quoteStyle.js
toStringTag.js
undef.js
values.js

مشاهدة ملف: 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 }'
    );
});