(token: string | undefined)
| 386 | } |
| 387 | |
| 388 | function isNumericToken(token: string | undefined): token is string { |
| 389 | if (!token) return false; |
| 390 | return !Number.isNaN(Number(token)); |
| 391 | } |
| 392 | |
| 393 | function tokenizeReplayLine(line: string): string[] { |
| 394 | const tokens: string[] = []; |
no outgoing calls
no test coverage detected