Skip to content
1 min read · 87 words

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

ParameterTypeDescription
inputstringThe pipe expression.

Returns

RawSegment[]

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.