summaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/fn/regexp/match.js
blob: 400d0921ecbcd2339b3f3f022a2c2405c8c050a8 (plain)
1
2
3
4
5
require('../../modules/es6.regexp.match');
var MATCH = require('../../modules/_wks')('match');
module.exports = function(it, str){
  return RegExp.prototype[MATCH].call(it, str);
};