This commit is contained in:
David Kale
2020-09-08 13:25:36 -04:00
parent e4246d2b5b
commit 91fcbb0108
4227 changed files with 416837 additions and 457884 deletions

19
node_modules/es-abstract/2018/thisSymbolValue.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use strict';
var callBound = require('../helpers/callBound');
var $SymbolValueOf = callBound('Symbol.prototype.valueOf', true);
var Type = require('./Type');
// https://ecma-international.org/ecma-262/9.0/#sec-thissymbolvalue
module.exports = function thisSymbolValue(value) {
if (!$SymbolValueOf) {
throw new SyntaxError('Symbols are not supported; thisSymbolValue requires that `value` be a Symbol or a Symbol object');
}
if (Type(value) === 'Symbol') {
return value;
}
return $SymbolValueOf(value);
};