projecte_ionic/node_modules/core-js/internals/this-number-value.js
2022-02-09 18:30:03 +01:00

11 lines
309 B
JavaScript
Executable file

var classof = require('../internals/classof-raw');
// `thisNumberValue` abstract operation
// https://tc39.es/ecma262/#sec-thisnumbervalue
module.exports = function (value) {
if (typeof value != 'number' && classof(value) != 'Number') {
throw TypeError('Incorrect invocation');
}
return +value;
};