UNPKG

parjs

Version:

A parser-combinator library for JavaScript.

10 lines (9 loc) 236 B
/** * @module parjs/combinators */ /** */ import { ParjsCombinator } from "../../"; /** * Applies the source parser. Succeeds if if it fails softly, and fails otherwise. */ export declare function not(): ParjsCombinator<any, void>;