diff options
Diffstat (limited to 'development/quickjs/README')
-rw-r--r-- | development/quickjs/README | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/quickjs/README b/development/quickjs/README index ebc589068a71..3ffa3044b10a 100644 --- a/development/quickjs/README +++ b/development/quickjs/README @@ -1,5 +1,5 @@ QuickJS is a small and embeddable Javascript engine by Fabrice Bellard -and Charlie Gordon. It supports the ES2020 specification including +and Charlie Gordon. It supports the ES2023 specification including modules, asynchronous generators, proxies and BigInt. It optionally supports mathematical extensions such as big decimal floating point numbers (BigDecimal), big binary floating point numbers @@ -9,10 +9,10 @@ Main Features: * Small and easily embeddable: just a few C files, no external dependency. * Fast interpreter with very low startup time -* Almost complete ES2020 support including modules, asynchronous +* Almost complete ES2023 support including modules, asynchronous generators and full Annex B support (legacy web compatibility). * Passes nearly 100% of the ECMAScript Test Suite tests when selecting - the ES2020 features. + the ES2023 features. * Can compile Javascript sources to executables with no external dependency. * Garbage collection using reference counting (to reduce memory usage |