640a92603cea271edc64bbac7b2bb71f9c7330e699717abf2296aff0ef434470cb3359efe99a6da35cac08bf43a362bcbbd15595df5f239d17b9baf0407432 318 B

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