parjs
Version:
A parser-combinator library for JavaScript.
35 lines (33 loc) • 471 B
text/typescript
/**
* Parser combinators.
* @module parjs/combinators
* @preferred
* */ /** */
export {
stringify,
recover,
then,
not,
mustCapture,
must,
map,
manyTill,
manySepBy,
many,
later,
exactly,
backtrack,
or,
maybe,
each,
thenq,
qthen,
replaceState,
between,
flatten,
mapConst,
thenPick,
defineCombinator,
composeCombinator,
manyBetween
} from "./internal/combinators";