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

https://github.com/hellerve/bjson

Fast native JSON parser for zepto
https://github.com/hellerve/bjson

Last synced: 11 months ago
JSON representation

Fast native JSON parser for zepto

Awesome Lists containing this project

README

          

# bjson

`bjson` is a small JSON decoder for zepto. It wraps Haskell's `Text.JSON`.

# Installation

```
zeps install hellerve/bjson
```

## Usage

```clojure
(load "bjson/bjson")
(import-all "bjson")

(json:decode "{\"hello\": \"json\"}")
; => #{hello json}

; wrapper around decode->catch-error
(json:decode? "invalid-json")
; =>
```


Have fun!