functionalscript 0.0.573 → 0.0.574
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/package.json +1 -1
- package/types/bigint/README.md +3 -3
package/package.json
CHANGED
package/types/bigint/README.md
CHANGED
|
@@ -4,9 +4,9 @@ Bun has a `bigint` size limitation. It's `1_048_575` bits (`1024 ** 2`) or `131_
|
|
|
4
4
|
|
|
5
5
|
## Benchmarks
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### log2 versus toString (2024/11/25)
|
|
8
8
|
|
|
9
|
-
|Framework|
|
|
9
|
+
|Framework|log2(x) |x.toString(2).length|
|
|
10
10
|
|---------|------------------|--------------------|
|
|
11
11
|
|Bun |1.781681 |2.079615 |
|
|
12
12
|
|Deno 1 |0.710344 |1.917003 |
|
|
@@ -17,7 +17,7 @@ Bun has a `bigint` size limitation. It's `1_048_575` bits (`1024 ** 2`) or `131_
|
|
|
17
17
|
|Node 22 |0.983075 |2.336697 |
|
|
18
18
|
|Node 23 |0.699960 |1.872965 |
|
|
19
19
|
|
|
20
|
-
`
|
|
20
|
+
`log2` wins.
|
|
21
21
|
|
|
22
22
|
### Minus versus Not
|
|
23
23
|
|