New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

binaryen

Package Overview
Dependencies
Maintainers
2
Versions
1650
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binaryen - npm Package Compare versions

Comparing version

to
1.37.20-nightly.20170825

1

index.d.ts

@@ -210,2 +210,3 @@ declare module binaryen {

emitText(): string;
emitAsmjs(): string;
validate(): number;

@@ -212,0 +213,0 @@ optimize(): void;

2

package.json
{
"name": "binaryen",
"description": "JavaScript version of Binaryen, a compiler infrastructure and toolchain library for WebAssembly.",
"version": "1.37.19",
"version": "1.37.20-nightly.20170825",
"license": "Apache-2.0",

@@ -6,0 +6,0 @@ "repository": {

@@ -70,2 +70,3 @@ binaryen.js

* `emitBinary()`: Returns a binary for the module, which you can then compile and run in the browser.
* `emitAsmjs()`: Returns the module converted to asm.js, which can be run in older browsers as well.
* `emitText()`: Returns a text representation of the module, in s-expression format.

@@ -72,0 +73,0 @@ * `validate()`: Validates the module, checking it for correctness. Returns `1` if the module is valid, otherwise `0`.

Sorry, the diff of this file is too big to display