(positionals: string[])
| 382 | } |
| 383 | |
| 384 | function hasFillTargetAndText(positionals: string[]): positionals is [string, string, ...string[]] { |
| 385 | return positionals.length >= 2; |
| 386 | } |
| 387 | |
| 388 | function isNumericToken(token: string | undefined): token is string { |
| 389 | if (!token) return false; |
no outgoing calls
no test coverage detected