_isNumber.js 106 B

123
  1. export default function _isNumber(x) {
  2. return Object.prototype.toString.call(x) === '[object Number]';
  3. }