An open API service indexing awesome lists of open source software.

https://github.com/sigmasd/rondeno

Deno wasm wrapper over ron
https://github.com/sigmasd/rondeno

deno encoding ron wasm

Last synced: 22 days ago
JSON representation

Deno wasm wrapper over ron

Awesome Lists containing this project

README

          

# RonDeno

Deno wasm wrapper over [ron](https://github.com/ron-rs/ron)

## Usage

```ts
import { parse, stringify } from "https://deno.land/x/rondeno/mod.ts";

console.log(
stringify(parse("(boolean: true, float: 1.23)")),
);
```

## Developemnt

`deno task wasmbuild`

`deno test -A`