4741755a79d230b83aff663c97a38584984c21df025236b25b8eece2c480e9adf1824d7f51d43dcbe3fce9bdbabde708d686593a6b1178dcb48a4e0578a5aa 317 B

12345678910111213
  1. 'use strict';
  2. var $StringValueOf = require('call-bound')('String.prototype.valueOf');
  3. // https://262.ecma-international.org/6.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. };