nll
v1.0.2
Published
codec for list of lists of numbers
Downloads
2
Readme
NLL-JS
Encodes list of lists of integers into a Buffer
according to
https://github.com/statebox/nll-spec
Usage
Import library
const nll = require('nll')
//=> { encode: [[number]] -> Buffer,
// decode: Buffer -> [[number]] }
Encode
> b = nll.encode([[-1],[0],[],[1]])
//=> <Buffer 0f 00 01 00 02 00 00 04>
Decode
> n.decode(b)
[ [ -1 ], [ 0 ], [], [ 1 ] ]