summaryrefslogtreecommitdiff
path: root/src/node_modules/is-nan/test/index.js
blob: f55aba9123a64b387aa184dd3a25b2e932380a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

var numberIsNaN = require('../');
var test = require('tape');
var runTests = require('./tests');

test('as a function', function (t) {
	runTests(numberIsNaN, t);

	t.end();
});