Files
lsp/node_modules/is-nan/test/index.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

12 lines
192 B
JavaScript

'use strict';
var numberIsNaN = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(numberIsNaN, t);
t.end();
});