| 1 | export interface CwdParseResult { |
| 2 | /** The directory passed to `--cwd`, or undefined if the flag was absent. */ |
| 3 | cwd?: string; |
| 4 | /** The remaining argv with the `--cwd` flag (and its value) removed. */ |
| 5 | rest: string[]; |
| 6 | } |
| 7 | |
| 8 | /** |
| 9 | * Extract a global `--cwd <dir>` / `--cwd=<dir>` flag from argv, returning the |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…