大唐会议项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
1747191978@qq.com b4444fc0fd 大唐后台会议详情 4 months ago
..
.github 大唐后台会议详情 4 months ago
test 大唐后台会议详情 4 months ago
.editorconfig 大唐后台会议详情 4 months ago
.eslintrc 大唐后台会议详情 4 months ago
.nycrc 大唐后台会议详情 4 months ago
CHANGELOG.md 大唐后台会议详情 4 months ago
LICENSE 大唐后台会议详情 4 months ago
README.md 大唐后台会议详情 4 months ago
index.js 大唐后台会议详情 4 months ago
package.json 大唐后台会议详情 4 months ago

README.md

is-number-object Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

Example

var isNumber = require('is-number-object');
var assert = require('assert');

assert.notOk(isNumber(undefined));
assert.notOk(isNumber(null));
assert.notOk(isNumber(false));
assert.notOk(isNumber(true));
assert.notOk(isNumber('foo'));
assert.notOk(isNumber(function () {}));
assert.notOk(isNumber([]));
assert.notOk(isNumber({}));
assert.notOk(isNumber(/a/g));
assert.notOk(isNumber(new RegExp('a', 'g')));
assert.notOk(isNumber(new Date()));

assert.ok(isNumber(42));
assert.ok(isNumber(NaN));
assert.ok(isNumber(Infinity));
assert.ok(isNumber(new Number(42)));

Tests

Simply clone the repo, npm install, and run npm test