刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 | 2 months ago | |
---|---|---|
.. | ||
.npmignore | 2 months ago | |
.travis.yml | 2 months ago | |
LICENSE | 2 months ago | |
README.md | 2 months ago | |
index.js | 2 months ago | |
package.json | 2 months ago |
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