rhb-server/mes-ui/rhb-app/node_modules/@webassemblyjs/wasm-parser
2025-10-20 11:14:41 +08:00
..
esm 初始化 2025-10-20 11:14:41 +08:00
lib 初始化 2025-10-20 11:14:41 +08:00
LICENSE 初始化 2025-10-20 11:14:41 +08:00
package.json 初始化 2025-10-20 11:14:41 +08:00
README.md 初始化 2025-10-20 11:14:41 +08:00

@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)