github-pages-deploy-action/node_modules/core-js-pure/es/regexp/replace.js
2020-03-06 22:45:40 -05:00

9 lines
267 B
JavaScript

require('../../modules/es.string.replace');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var REPLACE = wellKnownSymbol('replace');
module.exports = function (it, str, replacer) {
return RegExp.prototype[REPLACE].call(it, str, replacer);
};