Releases: jneen/parsimmon
Releases · jneen/parsimmon
Shrinks UMD bundle
bitSeq bugfix
- Fixes a bug where
bitSeq
consumed the wrong input
Binary buffer support
version 1.7.0 (2018-03-10)
- Adds support for binary parsing using Node.js Buffers
- Adds
Parsimmon.Binary.bitSeq
- Adds
Parsimmon.Binary.bitSeqObj
- Adds
Parsimmon.Binary.byte
v1.6.2
v1.6.1
- 100% unit test coverage! This does not mean bugs won't exist, but it keeps us much safer against regressions in the future.
- BUGFIX:
Parsimmon.regexp(regexp, group)
will now correctly fail to parse if thegroup
number is out of range for theregexp
number of groups. This worked correctly in the past, but was broken during a minor code clean up due to missing tests.
v1.6.0
v1.5.0
version 1.5.0 (2017-06-17)
- Adds
parser.sepBy(separator)
alias forParsimmon.sepBy(parser, separator)
- Adds
parser.sepBy1(separator)
alias forParsimmon.sepBy1(parser, separator)
- Adds
Parsimmon.range(begin, end)
- Adds
parser.wrap(before, after)
- Adds
parser.trim(anotherParser)
- Adds
parser.tie()