UNPKG

crazy-parser

Version:

A light-weight parser combinator

5 lines (4 loc) 198 B
export function optional(p) { return p.optional(); } export function withRange(p) { return p.withRange(); } export function many(p) { return p.many(); } export function some(p) { return p.some(); }