Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/es-abstract/2017/thisStringValue.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

16 lines
356 B
JavaScript

'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);
};