(value: string | undefined)
| 1 | function isResultBundlePathValue(value: string | undefined): value is string { |
| 2 | return value !== undefined && value.length > 0 && !value.startsWith('-'); |
| 3 | } |
| 4 | |
| 5 | export function parseResultBundlePathArgs(extraArgs?: readonly string[]): { |
| 6 | remainingArgs: string[]; |
no outgoing calls
no test coverage detected