You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
4 months ago
|
'use strict';
|
||
|
|
||
|
var numToStr = Number.prototype.toString;
|
||
|
|
||
|
var toStr = Object.prototype.toString;
|
||
|
var numClass = '[object Number]';
|
||
|
var hasToStringTag = require('has-tostringtag/shams')();
|
||
|
|
||
|
module.exports = function isNumberObject(value) {
|
||
|
if (typeof value === 'number') {
|
||
|
return true;
|
||
|
}
|
||
|
if (typeof value !== 'object') {
|
||
|
return false;
|
||
|
}
|
||
|
return hasToStringTag ? value instanceof Number : toStr.call(value) === numClass;
|
||
|
};
|