(input: string)
| 4 | } |
| 5 | |
| 6 | export function stripLeadingPipe(input: string): string { |
| 7 | if (!input.startsWith("|")) return input; |
| 8 | return input.slice(1); |
| 9 | } |
| 10 | |
| 11 | export function parsePipeKeyValue( |
| 12 | part: string, |
no outgoing calls
no test coverage detected