No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Christian Ziermann b8da0c7023 Initial commit hace 4 años
..
test Initial commit hace 4 años
.npmignore Initial commit hace 4 años
.travis.yml Initial commit hace 4 años
LICENSE Initial commit hace 4 años
README.md Initial commit hace 4 años
index.js Initial commit hace 4 años
package.json Initial commit hace 4 años

README.md

json-buffer

JSON functions that can convert buffers!

build status

testling badge

JSON mangles buffers by converting to an array… which isn’t helpful. json-buffers converts to base64 instead, and deconverts base64 to a buffer.

var JSONB = require('json-buffer')
var Buffer = require('buffer').Buffer

var str = JSONB.stringify(new Buffer('hello there!'))

console.log(JSONB.parse(str)) //GET a BUFFER back

License

MIT