json-to-ast
Version:
JSON AST parser
37 lines (27 loc) • 1.03 kB
Markdown
## v2.1.0
- Added Emoji support
## v2.0.7
- Decreased minimal NodeJS version to 4 (minimal NodeJS version 6 will be in the next major version of "json-to-ast")
## v2.0.5
- Increased minimal NodeJS version to 6
## v2.0.0
- Over-escaped identifier's value fixing (https://github.com/vtrushin/json-to-ast/issues/17)
- Changed case for node type names
- Changed option "verbose" parameter to "loc"
- Changed "rawValue" to "raw"
- Added "raw" to "Identifier" node
- Added pretty message output
## v2.0.0-alpha1.4
- Changed error's view
## v2.0.0-alpha1.3
- Fixed issue [Infinite loop in parseObject for empty objects when !verbose](https://github.com/vtrushin/json-to-ast/issues/15)
## v2.0.0-alpha1.1
- Added tests from https://github.com/nst/JSONTestSuite
- Changed "value" node to "literal"
- Added "rawValue" for "literal". "value" is cast to type now
- Changed "key" node to "identifier"
- Renamed "position" to "loc"
- Renamed "char" in "loc" to "offset"
- Added "source" to "loc"
## v1.2.15
- Fixed unicode parser bug