(target: string)
| 1701 | * inside the braces (`${ null }`) name a different variable, so no regex. |
| 1702 | */ |
| 1703 | export function isNullRedirectionTarget(target: string): boolean { |
| 1704 | const t = target.trim().toLowerCase() |
| 1705 | return t === '$null' || t === '${null}' |
| 1706 | } |
| 1707 | |
| 1708 | /** |
| 1709 | * Get output redirections (file redirections, not merging redirections). |
no outgoing calls
no test coverage detected