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