* Checks if the input at current position matches the given string.
(input: InputStream, str: string)
| 42 | * Checks if the input at current position matches the given string. |
| 43 | */ |
| 44 | function matchesString(input: InputStream, str: string): boolean { |
| 45 | return matchesStringAt(input, 0, str); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Checks if the input at the given offset matches the given string. |
nothing calls this directly
no test coverage detected