meriyah 4.0.0-dev.20210204 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/meriyah.amd.js +10 -2190
- package/dist/meriyah.amd.min.js +1 -1
- package/dist/meriyah.cjs.js +10 -2190
- package/dist/meriyah.cjs.min.js +1 -1
- package/dist/meriyah.esm.js +10 -2190
- package/dist/meriyah.esm.min.js +1 -1
- package/dist/meriyah.iife.js +10 -2190
- package/dist/meriyah.iife.min.js +1 -1
- package/dist/meriyah.system.js +10 -2190
- package/dist/meriyah.system.min.js +1 -1
- package/dist/meriyah.umd.es5.js +10 -2190
- package/dist/meriyah.umd.es5.min.js +2 -2
- package/dist/meriyah.umd.js +10 -2190
- package/dist/meriyah.umd.min.js +1 -1
- package/dist/src/lexer/jsx.d.ts.map +1 -1
- package/dist/src/parser.d.ts +1 -1
- package/dist/src/parser.d.ts.map +1 -1
- package/package.json +7 -14
- package/src/lexer/jsx.ts +2 -4
- package/src/parser.ts +13 -7
- package/dist/src/lexer/decodeHTML.d.ts +0 -2
- package/dist/src/lexer/decodeHTML.d.ts.map +0 -1
- package/src/lexer/decodeHTML.ts +0 -2186
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
## Features
|
|
19
19
|
|
|
20
|
-
* Conforms to the standard ECMAScript®
|
|
20
|
+
* Conforms to the standard ECMAScript® 2020 (ECMA-262 10th Edition) language specification
|
|
21
21
|
* Support TC39 proposals via option
|
|
22
22
|
* Support for additional ECMAScript features for Web Browsers
|
|
23
23
|
* JSX support via option
|
|
@@ -33,6 +33,10 @@
|
|
|
33
33
|
* [Decorators](https://github.com/tc39/proposal-decorators)
|
|
34
34
|
* [Class Public Instance Fields & Private Instance Fields](https://github.com/tc39/proposal-class-fields)
|
|
35
35
|
* [Hashbang grammar](https://github.com/tc39/proposal-hashbang)
|
|
36
|
+
* [import.meta](https://github.com/tc39/proposal-import-meta)
|
|
37
|
+
* [Nullish coalescing Operator](https://github.com/tc39/proposal-nullish-coalescing)
|
|
38
|
+
* [Numeric separators](https://github.com/tc39/proposal-numeric-separator)
|
|
39
|
+
* [Optional Chaining](https://github.com/tc39/proposal-optional-chaining)
|
|
36
40
|
* [Private methods](https://github.com/tc39/proposal-private-methods)
|
|
37
41
|
* [Static class fields and private static methods](https://github.com/tc39/proposal-static-class-features/)
|
|
38
42
|
|