| Current Path : /proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/deep-is/test/ |
| Current File : //proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/deep-is/test/NaN.js |
var test = require('tape');
var equal = require('../');
test('NaN and 0 values', function (t) {
t.ok(equal(NaN, NaN));
t.notOk(equal(0, NaN));
t.ok(equal(0, 0));
t.notOk(equal(0, 1));
t.end();
});
test('nested NaN values', function (t) {
t.ok(equal([ NaN, 1, NaN ], [ NaN, 1, NaN ]));
t.end();
});