(input: string)
| 1 | export function splitPipeParts(input: string): string[] { |
| 2 | // `String.prototype.split` preserves empty segments, including trailing ones. |
| 3 | return input.split("|"); |
| 4 | } |
| 5 | |
| 6 | export function stripLeadingPipe(input: string): string { |
| 7 | if (!input.startsWith("|")) return input; |
no outgoing calls
no test coverage detected