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