Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Siti Rahayu 79f738203a latest 5 年前
..
esm latest 5 年前
lib latest 5 年前
LICENSE latest 5 年前
README.md latest 5 年前
package.json latest 5 年前
webassemblyjs-wasm-parser-1.7.10.tgz latest 5 年前

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)