Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wasmparser

Package Overview
Dependencies
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wasmparser - npm Package Compare versions

Comparing version 0.16.0 to 0.16.1

8

dist/cjs/WasmDis.js

@@ -712,2 +712,5 @@ "use strict";

{
// Table index might be omitted and defaults to 0.
if (operator.tableIndex === 0 && operator.destinationIndex === 0)
break;
var tableName = this._nameResolver.getTableName(operator.tableIndex, true);

@@ -720,2 +723,7 @@ var destinationName = this._nameResolver.getTableName(operator.destinationIndex, true);

{
// Table index might be omitted and defaults to 0.
if (operator.tableIndex === 0) {
this.appendBuffer(" " + operator.segmentIndex);
break;
}
var tableName = this._nameResolver.getTableName(operator.tableIndex, true);

@@ -722,0 +730,0 @@ this.appendBuffer(" " + operator.segmentIndex + " " + tableName);

@@ -669,2 +669,5 @@ /* Copyright 2016 Mozilla Foundation

{
// Table index might be omitted and defaults to 0.
if (operator.tableIndex === 0 && operator.destinationIndex === 0)
break;
let tableName = this._nameResolver.getTableName(operator.tableIndex, true);

@@ -677,2 +680,7 @@ let destinationName = this._nameResolver.getTableName(operator.destinationIndex, true);

{
// Table index might be omitted and defaults to 0.
if (operator.tableIndex === 0) {
this.appendBuffer(` ${operator.segmentIndex}`);
break;
}
let tableName = this._nameResolver.getTableName(operator.tableIndex, true);

@@ -679,0 +687,0 @@ this.appendBuffer(` ${operator.segmentIndex} ${tableName}`);

2

package.json
{
"name": "wasmparser",
"version": "0.16.0",
"version": "0.16.1",
"description": "Binary WebAssembly file parser.",

@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc