You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
228 B

4 years ago
  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. ```