CoolFace
Apppublic

HarshvardhanCn01/Voice-Assistant

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
undef.js13 linesDownload Raw Back to test
1var test = require('tape');2var inspect = require('../');3 4var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null };5 6test('undef and null', function (t) {7    t.plan(1);8    t.equal(9        inspect(obj),10        '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }'11    );12});13