christian 4571a14169 android fix | hace 3 años | |
---|---|---|
.. | ||
test | hace 3 años | |
.npmignore | hace 3 años | |
.travis.yml | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
index.js | hace 3 años | |
package.json | hace 3 años |
JSON functions that can convert buffers!
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
MIT