(command: string)
| 2616 | * using normalized detection that handles env var prefixes and shell quotes. |
| 2617 | */ |
| 2618 | export function commandHasAnyCd(command: string): boolean { |
| 2619 | return splitCommand(command).some(subcmd => |
| 2620 | isNormalizedCdCommand(subcmd.trim()), |
| 2621 | ) |
| 2622 | } |
no test coverage detected