This repository has been archived on 2026-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
todo/client/node_modules/es-abstract/2024/ThisSymbolValue.js

21 lines
527 B
JavaScript
Raw Normal View History

2025-06-13 06:04:40 +00:00
'use strict';
var $SyntaxError = require('es-errors/syntax');
var callBound = require('call-bound');
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);
};