2016-10-10 03:43:44 +02:00
|
|
|
// @@replace logic
|
2017-04-20 03:09:25 +02:00
|
|
|
require('./$.fix-re-wks')('replace', 2, function(defined, REPLACE, $replace){
|
2016-10-10 03:43:44 +02:00
|
|
|
// 21.1.3.14 String.prototype.replace(searchValue, replaceValue)
|
2017-04-20 03:09:25 +02:00
|
|
|
return function replace(searchValue, replaceValue){
|
2016-10-10 03:43:44 +02:00
|
|
|
'use strict';
|
|
|
|
var O = defined(this)
|
|
|
|
, fn = searchValue == undefined ? undefined : searchValue[REPLACE];
|
|
|
|
return fn !== undefined
|
|
|
|
? fn.call(searchValue, O, replaceValue)
|
|
|
|
: $replace.call(String(O), searchValue, replaceValue);
|
2017-04-20 03:09:25 +02:00
|
|
|
};
|
2016-10-10 03:43:44 +02:00
|
|
|
});
|