cbfc58bce6469b69965f5278b1424cf401b9a1055072f5a125d125526546d81d230081e0470b7fd94295a75f23587f115d314725142df3fdcd2db869061d08 228 B

1234567891011121314151617
  1. # @webassemblyjs/wast-parser
  2. > WebAssembly text format parser
  3. ## Installation
  4. ```sh
  5. yarn add @webassemblyjs/wast-parser
  6. ```
  7. ## Usage
  8. ```js
  9. import { parse } from "@webassemblyjs/wast-parser";
  10. const ast = parse(source);
  11. ```