esnext.string.cooked.js 256 B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var cooked = require('../internals/string-cooked');
  4. // `String.cooked` method
  5. // https://github.com/tc39/proposal-string-cooked
  6. $({ target: 'String', stat: true, forced: true }, {
  7. cooked: cooked
  8. });