revere.dev/safelock/dashboard/node_modules/es-abstract/2021/thisStringValue.js

16 lines
356 B
JavaScript
Raw Permalink Normal View History

2024-07-01 21:55:25 +02:00
'use strict';
var $StringValueOf = require('call-bind/callBound')('String.prototype.valueOf');
var Type = require('./Type');
// https://262.ecma-international.org/6.0/#sec-properties-of-the-string-prototype-object
module.exports = function thisStringValue(value) {
if (Type(value) === 'String') {
return value;
}
return $StringValueOf(value);
};