UNPKG

is_number

Version:
4 lines (3 loc) 91 B
module.exports = function isNumber(obj) { return typeof(obj) === "number" || false; };