webhook-action/node_modules/es-abstract/2019/thisStringValue.js

14 lines
326 B
JavaScript
Raw Normal View History

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