3.0.0
This release makes a few changes and adds a few arguments and combinators to allow writing faster parsers.
- Breaking: the
range
parser no longer returns a value. Combine it withrecognize
if you needed one. codepoint
allows matching a single character filtered by a predicate function.or
accepts an optionalexpected
argument to avoid combining the expected values from its child parsers.starConsumed
andplusConsumed
avoid collecting inner parser values into an array.
Full Changelog: 2.1.0...3.0.0