This commit is contained in:
2021-11-21 11:18:28 +01:00
parent 7a358eb836
commit 230b10b2a3
9339 changed files with 892519 additions and 62 deletions

18
node_modules/es-abstract/2021/thisNumberValue.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
var callBound = require('call-bind/callBound');
var Type = require('./Type');
var $NumberValueOf = callBound('Number.prototype.valueOf');
// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-number-prototype-object
module.exports = function thisNumberValue(value) {
if (Type(value) === 'Number') {
return value;
}
return $NumberValueOf(value);
};