lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | 4 年 前 | |
---|---|---|
.. | ||
test | 4 年 前 | |
.npmignore | 4 年 前 | |
.travis.yml | 4 年 前 | |
LICENSE | 4 年 前 | |
README.md | 4 年 前 | |
index.js | 4 年 前 | |
package.json | 4 年 前 |
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