primea-wasm-container
Advanced tools
Comparing version 0.3.5 to 0.3.6
@@ -6,3 +6,3 @@ const ReferanceMap = require('reference-map') | ||
const CODEKEY = new RadixTree.ArrayConstructor([1]) | ||
const CODEKEY = new RadixTree.ArrayConstructor([0, 1]) | ||
@@ -104,4 +104,6 @@ module.exports = class WasmContainer extends AbstractContainer { | ||
*/ | ||
execute (cb, val) { | ||
this.instance.exports.callbacks.get(cb)(val) | ||
execute (cb) { | ||
const args = [...arguments] | ||
args.shift() | ||
this.instance.exports.callbacks.get(cb)(...args) | ||
} | ||
@@ -108,0 +110,0 @@ |
{ | ||
"name": "primea-wasm-container", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"description": "", | ||
@@ -28,3 +28,3 @@ "main": "index.js", | ||
"level-browserify": "^1.1.1", | ||
"nyc": "^11.3.0", | ||
"nyc": "^11.4.1", | ||
"primea-hypervisor": "^0.4.5", | ||
@@ -31,0 +31,0 @@ "primea-message": "^0.6.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
182473
706