kiruthiga 55473b7e7c initial push hai 5 días
..
esm 55473b7e7c initial push hai 5 días
lib 55473b7e7c initial push hai 5 días
LICENSE 55473b7e7c initial push hai 5 días
README.md 55473b7e7c initial push hai 5 días
package.json 55473b7e7c initial push hai 5 días
webassemblyjs-wasm-parser-1.7.10.tgz 55473b7e7c initial push hai 5 días

README.md

@webassemblyjs/wasm-parser

WebAssembly binary format parser

Installation

yarn add @webassemblyjs/wasm-parser

Usage

import { decode } from "@webassemblyjs/wasm-parser";

const decoderOpts = {};

const ast = decode(binary, decoderOpts);

Decoder options

  • dump: print dump information while decoding (default false)
  • ignoreCodeSection: ignore the code section (default false)
  • ignoreDataSection: ignore the data section (default false)