blob: 1311b2a158bfe86b1e335aec14aa69b044aab51e [file] [log] [blame]
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);
};