(name: string)
| 1036 | * Checks if a command name (after alias resolution) is a safe output cmdlet. |
| 1037 | */ |
| 1038 | export function isSafeOutputCommand(name: string): boolean { |
| 1039 | const canonical = resolveToCanonical(name) |
| 1040 | return SAFE_OUTPUT_CMDLETS.has(canonical) |
| 1041 | } |
| 1042 | |
| 1043 | /** |
| 1044 | * Checks if a command element is a pipeline-tail transformer that was moved |
no test coverage detected