match.js 239 B

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