(command: string)
| 729 | * @returns true if the command appears to contain heredoc syntax |
| 730 | */ |
| 731 | export function containsHeredoc(command: string): boolean { |
| 732 | return HEREDOC_START_PATTERN.test(command) |
| 733 | } |
| 734 |
nothing calls this directly
no outgoing calls
no test coverage detected