christian 4571a14169 android fix | před 3 roky | |
---|---|---|
.. | ||
test | před 3 roky | |
.npmignore | před 3 roky | |
.travis.yml | před 3 roky | |
LICENSE | před 3 roky | |
README.md | před 3 roky | |
index.js | před 3 roky | |
package.json | před 3 roky |
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