7bcbd7b76e005d4e08883b138487073435a26b3d
[yaffs-website] / _a-number-value.js
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 };