File: index.js

package info (click to toggle)
node-assert 2.0.0%2B~cs3.9.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 496 kB
  • sloc: javascript: 4,088; makefile: 8
file content (11 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
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();
});