_a-number-value.js 153 B

12345
  1. var cof = require('./_cof');
  2. module.exports = function(it, msg){
  3. if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg);
  4. return +it;
  5. };