Irina Glushko 2389e7160b HW1 done | 3 anni fa | |
---|---|---|
.. | ||
esm | 3 anni fa | |
lib | 3 anni fa | |
LICENSE | 3 anni fa | |
README.md | 3 anni fa | |
package.json | 3 anni fa |
WebAssembly binary format parser
yarn add @webassemblyjs/wasm-parser
import { decode } from "@webassemblyjs/wasm-parser";
const decoderOpts = {};
const ast = decode(binary, decoderOpts);
dump
: print dump information while decoding (default false
)ignoreCodeSection
: ignore the code section (default false
)ignoreDataSection
: ignore the data section (default false
)