1
0
forked from dyf/APP
Files
APP/node_modules/es5-ext/number/is-number.js

12 lines
264 B
JavaScript
Raw Normal View History

2025-07-05 14:49:26 +08:00
"use strict";
var objToString = Object.prototype.toString, id = objToString.call(1);
module.exports = function (value) {
return (
typeof value === "number" ||
value instanceof Number ||
(typeof value === "object" && objToString.call(value) === id)
);
};