UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

17 lines (13 loc) • 329 B
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(); });