Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Christian Ziermann b8da0c7023 Initial commit 4 år sedan
..
test Initial commit 4 år sedan
.npmignore Initial commit 4 år sedan
.travis.yml Initial commit 4 år sedan
LICENSE Initial commit 4 år sedan
README.md Initial commit 4 år sedan
index.js Initial commit 4 år sedan
package.json Initial commit 4 år sedan

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