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()
2353 private removeWhitespace(text: string): string {2921 … const removeWhitespace = (s: string): string => includeWhitespace ? s : this.removeWhitespace(s); constant2922 if (removeWhitespace(actualText) !== removeWhitespace(expectedText)) {