(val: T | T[])
| 34 | } |
| 35 | |
| 36 | const toArray = <T>(val: T | T[]): T[] => (Array.isArray(val) ? val : [val]) |
| 37 | |
| 38 | // Check if an argument matches a known subcommand (case-insensitive: PS |
| 39 | // callers pass original-cased args; fig spec names are lowercase) |
no outgoing calls
no test coverage detected