is-number.js 169 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 export default function isNumber(input) { return ( typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]' ); }