lepu-test-platform-web/node_modules/core-js/internals/this-number-value.js

11 lines
309 B
JavaScript
Raw Permalink Normal View History

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;
};