刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 | преди 2 месеца | |
---|---|---|
.. | ||
.npmignore | преди 2 месеца | |
.travis.yml | преди 2 месеца | |
LICENSE | преди 2 месеца | |
README.md | преди 2 месеца | |
index.js | преди 2 месеца | |
package.json | преди 2 месеца |
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