We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2669c6 commit b3671f0Copy full SHA for b3671f0
CHANGES.md
@@ -5,6 +5,7 @@
5
6
## Bug fixes
7
* Compiler: fix purity of comparison functions (again) (#2092)
8
+* Runtime/wasm: fix Unix.times (#2096)
9
10
# 6.2.0 (2025-07-30) - Lille
11
runtime/wasm/runtime.js
@@ -392,7 +392,7 @@
392
return caml_alloc_times(t.user / 1e6, t.system / 1e6);
393
} else {
394
var t = performance.now() / 1000;
395
- return caml_alloc_times(t, t);
+ return caml_alloc_times(t, 0);
396
}
397
},
398
gmtime: (t) => {
0 commit comments