Lines Matching refs:replaceValue
33899 function replace(searchValue, replaceValue) {
33903 ? call(replacer, searchValue, O, replaceValue)
33904 : call(nativeReplace, toString(O), searchValue, replaceValue);
33908 function (string, replaceValue) {
33913 typeof replaceValue == 'string' &&
33914 stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&
33915 stringIndexOf(replaceValue, '$<') === -1
33917 var res = maybeCallNative(nativeReplace, rx, S, replaceValue);
33921 var functionalReplace = isCallable(replaceValue);
33922 if (!functionalReplace) replaceValue = toString(replaceValue);
33959 var replacement = toString(apply(replaceValue, undefined, replacerArgs));
33961 … replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);