Blame view

node_modules/moment/src/lib/utils/is-number.js 145 Bytes
ce4c83ff   wxy   初始提交
1
2
3
  export default function isNumber(input) {
      return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
  }