@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.
@@ -1317,13 +1317,13 @@ class Waitable {
1317
1317
 
1318
1318
  function toUint64(val) {
1319
1319
  const converted = BigInt(val)
1320
- _requireValidNumericPrimitive('u64', converted);
1320
+
1321
1321
  return BigInt.asUintN(64, converted);
1322
1322
  }
1323
1323
 
1324
1324
 
1325
1325
  function toUint32(val) {
1326
- _requireValidNumericPrimitive('u32', val);
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
- _requireValidNumericPrimitive('u64', converted);
1320
+
1321
1321
  return BigInt.asUintN(64, converted);
1322
1322
  }
1323
1323
 
1324
1324
 
1325
1325
  function toUint32(val) {
1326
- _requireValidNumericPrimitive('u32', val);
1326
+
1327
1327
  return val >>> 0;
1328
1328
  }
1329
1329
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytecodealliance/jco",
3
- "version": "1.17.8",
3
+ "version": "1.17.9-rc.0",
4
4
  "description": "JavaScript tooling for working with WebAssembly Components",
5
5
  "keywords": [
6
6
  "Component",
package/src/jco.js CHANGED
@@ -25,7 +25,7 @@ program
25
25
  )
26
26
  .usage("<command> [options]")
27
27
  .enablePositionalOptions()
28
- .version("1.17.8");
28
+ .version("1.17.9-rc.0");
29
29
 
30
30
  function myParseInt(value) {
31
31
  return parseInt(value, 10);