Lines Matching full:text
51 export function isIncludeOctalEscapeSequence(text: string): boolean {
53 if (!text.match(reg)) {
59 while (index < text.length) {
60 if (text[index] == '\\' && index != text.length - 1) {
61 if (text[index + 1] == "\\") {
63 } else if (text[index + 1] >= '0' && text[index + 1] <= '7') {
237 export function isIncludeBackslash8Or9InString(text: string): boolean {
241 while (index < text.length) {
242 if (text[index] == '\\' && index != text.length - 1) {
243 if (text[index + 1] == "\\") {
245 } else if (text[index + 1] == '8' || text[index + 1] == '9') {