Lines Matching refs:replace

1458       funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&')
1459 .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
4970 return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');
6237 return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n');
6740 string.replace(rePropName, function(match, number, quote, subString) {
6741 result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));
12471 value = value.replace(reTrim, '');
14183 return string && string.replace(reLatin, deburrLetter).replace(reComboMark, '');
14254 ? string.replace(reUnescapedHtml, escapeHtmlChar)
14276 ? string.replace(reRegExpChar, '\\$&')
14483 return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0);
14536 function replace() {
14540 return args.length < 3 ? string : string.replace(args[1], args[2]);
14806 ? (options.sourceURL + '').replace(/[\r\n]/g, ' ')
14810 …string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evalu…
14814 source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar);
14846 source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source)
14847 .replace(reEmptyStringMiddle, '$1')
14848 .replace(reEmptyStringTrailing, '$1;');
14958 return string.replace(reTrim, '');
14993 return string.replace(reTrimEnd, '');
15026 return string.replace(reTrimStart, '');
15152 ? string.replace(reEscapedHtml, unescapeHtmlChar)
16799 lodash.replace = replace;