lagden / jsonb

Compress or decompress JSON

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsonb

NPM version Build Status Coverage Status


Compress or decompress any data

Install

$ npm i -S @tadashi/jsonb

Usage

import {compress, decompress} from '@tadashi/jsonb'

const c = await compress({a: 'foo', b: 'bar'})
// => Cw2AW3siYSI6MSwiYiI6Mn0sImZvbyIsImJhciJdAw==

const d = await decompress(c)
// => {a: 'foo', b: 'bar'}

License

MIT © Thiago Lagden

About

Compress or decompress JSON

License:MIT License


Languages

Language:JavaScript 70.6%Language:Shell 29.4%