This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/es-abstract/2022/thisStringValue.js
2024-09-18 13:34:19 -03:00

14 lines
326 B
JavaScript

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