18 lines
228 B
Markdown
18 lines
228 B
Markdown
|
# @webassemblyjs/wast-parser
|
||
|
|
||
|
> WebAssembly text format parser
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```sh
|
||
|
yarn add @webassemblyjs/wast-parser
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
import { parse } from "@webassemblyjs/wast-parser";
|
||
|
|
||
|
const ast = parse(source);
|
||
|
```
|