is-number-object
Advanced tools
Weekly downloads
Changelog
v1.0.7 - 2022-04-01
8f9a1b0
eccheck
command 9dc8dff
eslint
, @ljharb/eslint-config
, core-js
, safe-publish-latest
, tape
c50ecbf
f1a2560
eslint
, @ljharb/eslint-config
, aud
, core-js
, tape
4b06ace
eslint
, @ljharb/eslint-config
, auto-changelog
, core-js
, tape
3dc0e8b
bugs
/homepage
package.json fields d7e0bcf
Readme
Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
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)));
Simply clone the repo, npm install
, and run npm test
FAQs
Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
The npm package is-number-object receives a total of 21,434,566 weekly downloads. As such, is-number-object popularity was classified as popular.
We found that is-number-object demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.