Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andrewchambers/janet-jdn


https://github.com/andrewchambers/janet-jdn

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# jdn

Janet data notation. A set of convenience wrappers around the Janet parser api.

# Quick Examples

```
(import jdn)

(jdn/encode @[1 nil 2])
"@[1 nil 2]"
(jdn/decode-values "")
@[]
(jdn/decode-values "a b c")
@[a b c]
(jdn/decode "a b")
a
(jdn/decode "nil")
nil
```