UNPKG

parjs

Version:

A parser-combinator library for JavaScript.

11 lines (10 loc) 239 B
/** * @module parjs */ /** */ import { Parjser } from "../parjser"; /** * Returns a parser that succeeds without consuming input and yields the * current position as an integer. */ export declare function position(): Parjser<number>;