( parsed: ParsedPowerShellCommand, )
| 1688 | * Returns each pipeline's commands separately. |
| 1689 | */ |
| 1690 | export function getPipelineSegments( |
| 1691 | parsed: ParsedPowerShellCommand, |
| 1692 | ): ParsedStatement[] { |
| 1693 | return parsed.statements |
| 1694 | } |
| 1695 | |
| 1696 | /** |
| 1697 | * True if a redirection target is PowerShell's `$null` automatic variable. |
no outgoing calls
no test coverage detected