NLL-JS
Encodes list of lists of integers into a Buffer
according to
https://github.com/statebox/nll-spec
Usage
Import library
const nll = //=> { encode: [[number]] -> Buffer,// decode: Buffer -> [[number]] }
Encode
> b = nll//=> <Buffer 0f 00 01 00 02 00 00 04>
Decode
> n -1 0 1