kiruthiga 55473b7e7c initial push 6 днів тому
..
esm 55473b7e7c initial push 6 днів тому
lib 55473b7e7c initial push 6 днів тому
LICENSE 55473b7e7c initial push 6 днів тому
README.md 55473b7e7c initial push 6 днів тому
package.json 55473b7e7c initial push 6 днів тому
webassemblyjs-wasm-parser-1.7.10.tgz 55473b7e7c initial push 6 днів тому

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)