Version 1
[yaffs-website] / node_modules / core-js / modules / _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 };