car_web/node_modules/@webassemblyjs/wasm-parser
Ren ZeXin 2a459d620e 任泽鑫- 2024-03-05 15:31:56 +08:00
..
esm 任泽鑫- 2024-03-05 15:31:56 +08:00
lib 任泽鑫- 2024-03-05 15:31:56 +08:00
README.md 任泽鑫- 2024-03-05 15:31:56 +08:00

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)