Lines Matching refs:str
77 const str = `${val}`;
78 // As of V8 5.5, `str.search()` (and `unpairedSurrogateRe[@@search]()`) are
80 const match = RegExpPrototypeExec(unpairedSurrogateRe, str);
82 return str;
83 return _toUSVString(str, match.index);
93 function removeColors(str) {
94 return StringPrototypeReplace(str, colorRegExp, '');
466 let str = '';
471 str += output[i];
472 str += separator;
474 str += output[lastIndex];
476 return str;