mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
"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)
|
|
);
|
|
};
|