This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/es-abstract/2024/ThisStringValue.js
2025-01-13 09:33:52 +03:00

14 lines
318 B
JavaScript

'use strict';
var $StringValueOf = require('call-bound')('String.prototype.valueOf');
// https://262.ecma-international.org/15.0/#sec-properties-of-the-string-prototype-object
module.exports = function ThisStringValue(value) {
if (typeof value === 'string') {
return value;
}
return $StringValueOf(value);
};