aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/regexp/match.js
blob: af0e2fa6bca31c9d16c212baa552baa2a2fc0976 (plain)
1
2
3
4
5
6
7
8
require('../../modules/es.string.match');
var wellKnownSymbol = require('../../internals/well-known-symbol');

var MATCH = wellKnownSymbol('match');

module.exports = function (it, str) {
  return RegExp.prototype[MATCH].call(it, str);
};