cmy 02a04f55a0 2023-3-15 hace 2 años
..
esm 02a04f55a0 2023-3-15 hace 2 años
lib 02a04f55a0 2023-3-15 hace 2 años
LICENSE 02a04f55a0 2023-3-15 hace 2 años
README.md 02a04f55a0 2023-3-15 hace 2 años
package.json 02a04f55a0 2023-3-15 hace 2 años

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)