kiruthiga 55473b7e7c initial push il y a 5 jours
..
esm 55473b7e7c initial push il y a 5 jours
lib 55473b7e7c initial push il y a 5 jours
LICENSE 55473b7e7c initial push il y a 5 jours
README.md 55473b7e7c initial push il y a 5 jours
package.json 55473b7e7c initial push il y a 5 jours
webassemblyjs-wasm-parser-1.7.10.tgz 55473b7e7c initial push il y a 5 jours

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)