@bytecodealliance/jco 1.17.8 → 1.17.9-rc.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/obj/js-component-bindgen-component.js +2 -2
- package/obj/wasm-tools.js +2 -2
- package/package.json +1 -1
- package/src/jco.js +1 -1
|
@@ -1317,13 +1317,13 @@ class Waitable {
|
|
|
1317
1317
|
|
|
1318
1318
|
function toUint64(val) {
|
|
1319
1319
|
const converted = BigInt(val)
|
|
1320
|
-
|
|
1320
|
+
|
|
1321
1321
|
return BigInt.asUintN(64, converted);
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
1324
1324
|
|
|
1325
1325
|
function toUint32(val) {
|
|
1326
|
-
|
|
1326
|
+
|
|
1327
1327
|
return val >>> 0;
|
|
1328
1328
|
}
|
|
1329
1329
|
|
package/obj/wasm-tools.js
CHANGED
|
@@ -1317,13 +1317,13 @@ class Waitable {
|
|
|
1317
1317
|
|
|
1318
1318
|
function toUint64(val) {
|
|
1319
1319
|
const converted = BigInt(val)
|
|
1320
|
-
|
|
1320
|
+
|
|
1321
1321
|
return BigInt.asUintN(64, converted);
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
1324
1324
|
|
|
1325
1325
|
function toUint32(val) {
|
|
1326
|
-
|
|
1326
|
+
|
|
1327
1327
|
return val >>> 0;
|
|
1328
1328
|
}
|
|
1329
1329
|
|
package/package.json
CHANGED