Searched refs:removeWhitespace (Results 1 – 2 of 2) sorted by relevance
170 static String validateRE(String regex, boolean removeWhitespace) { in validateRE() argument173 String compressedRegex = removeWhitespace ? regex.replaceAll("\\s", "") : regex; in validateRE()
2281 private removeWhitespace(text: string): string {2845 … const removeWhitespace = (s: string): string => includeWhitespace ? s : this.removeWhitespace(s); constant2846 if (removeWhitespace(actualText) !== removeWhitespace(expectedText)) {