You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library is a high level bindings the [QuickJS](https://bellard.org/quickjs/)javascript engine.
8
+
This library is a high level bindings the [QuickJS](https://bellard.org/quickjs/)JavaScript engine.
9
9
Its goal is to be an easy to use, and safe wrapper similar to the rlua library.
10
10
11
-
**QuickJS** is a small and embeddable Javascript engine. It supports the _ES2020_ specification including modules, asynchronous generators, proxies and BigInt.
11
+
**QuickJS** is a small and embeddable JavaScript engine. It supports the _ES2020_ specification including modules, asynchronous generators, proxies and BigInt.
12
12
It optionally supports mathematical extensions such as big decimal floating point numbers (BigDecimal), big binary floating point numbers (BigFloat) and operator overloading.
13
13
14
14
## Main features of QuickJS
@@ -18,10 +18,10 @@ It optionally supports mathematical extensions such as big decimal floating poin
18
18
The complete life cycle of a runtime instance completes in less than 300 microseconds.
19
19
- Almost complete ES2020 support including modules, asynchronous generators and full Annex B support (legacy web compatibility).
20
20
- Passes nearly 100% of the ECMAScript Test Suite tests when selecting the ES2020 features. A summary is available at Test262 Report.
21
-
- Can compile Javascript sources to executables with no external dependency.
21
+
- Can compile JavaScript sources to executables with no external dependency.
22
22
- Garbage collection using reference counting (to reduce memory usage and have deterministic behavior) with cycle removal.
0 commit comments