Function: parsePipeRaw()
ts
function parsePipeRaw(input: string): RawSegment[];Defined in: src/batteries/media/pipe.ts:343
Parse a pipe expression into raw, position-bearing segments.
Parameters
| Parameter | Type | Description |
|---|---|---|
input | string | The pipe expression. |
Returns
The raw segments.
Remarks
Purely syntactic — verbs are fold-matched against the full verb table for canonicalization but unknown verbs are NOT an error here (the validator reports them with did-you-mean and the deployment's narrowed verb list). Pair with validateSegments for the validated path.