* Act like a multi-character eat - if consume is true or not given - or a look-ahead that doesn't update the stream * position - if it is false. pattern can be either a string or a regular expression starting with ^. When it is a * string, caseFold can be set to true to make the ma
(pattern: string, consume?: boolean, caseFold?: boolean)
| 991 | * expression, the returned value will be the array returned by match, in case you need to extract matched groups. |
| 992 | */ |
| 993 | match(pattern: string, consume?: boolean, caseFold?: boolean): boolean; |
| 994 | match(pattern: RegExp, consume?: boolean): string[]; |
| 995 | |
| 996 | /** |
no outgoing calls
no test coverage detected