match.js 280 B

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