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 printer
  3. ## Installation
  4. ```sh
  5. yarn add @webassemblyjs/wast-printer
  6. ```
  7. ## Usage
  8. ```js
  9. import { print } from "@webassemblyjs/wast-printer"
  10. console.log(print(ast));
  11. ```