lix-website/themes/lix/assets/bootstrap/node_modules/es-abstract/2024/ThisSymbolValue.js

21 lines
536 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
'use strict';
var $SyntaxError = require('es-errors/syntax');
var callBound = require('call-bind/callBound');
var $SymbolValueOf = callBound('Symbol.prototype.valueOf', true);
// https://262.ecma-international.org/15.0/#sec-thissymbolvalue
module.exports = function ThisSymbolValue(value) {
if (typeof value === 'symbol') {
return value;
}
if (!$SymbolValueOf) {
throw new $SyntaxError('Symbols are not supported; thisSymbolValue requires that `value` be a Symbol or a Symbol object');
}
return $SymbolValueOf(value);
};