d94ecdc25938ad7e60a79ce1e85fe4903ed9e8f4f6cd99a427feef1a6819f5f694d9ddf82f55943bd83cd6482b5d0971cfa33505db62457e14483b2c1dc075 348 B

1234567891011
  1. 'use strict';
  2. require('../../modules/es.regexp.exec');
  3. require('../../modules/es.string.match');
  4. var call = require('../../internals/function-call');
  5. var wellKnownSymbol = require('../../internals/well-known-symbol');
  6. var MATCH = wellKnownSymbol('match');
  7. module.exports = function (it, str) {
  8. return call(RegExp.prototype[MATCH], it, str);
  9. };