gaojunlong 0b996e41aa 2025-03-04-1 il y a 2 mois
..
esm 0b996e41aa 2025-03-04-1 il y a 2 mois
lib 0b996e41aa 2025-03-04-1 il y a 2 mois
LICENSE 0b996e41aa 2025-03-04-1 il y a 2 mois
README.md 0b996e41aa 2025-03-04-1 il y a 2 mois
package.json 0b996e41aa 2025-03-04-1 il y a 2 mois
webassemblyjs-wasm-parser-1.7.10.tgz 0b996e41aa 2025-03-04-1 il y a 2 mois

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)