doum
2025-09-26 9057e04efad1b7d61c77a72e5c37a504d0aee935
1
2
3
4
5
6
7
8
9
10
11
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.string.replace');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
 
var REPLACE = wellKnownSymbol('replace');
 
module.exports = function (it, str, replacer) {
  return call(RegExp.prototype[REPLACE], it, str, replacer);
};