仲裁视频会议H5
wangqiong 37a88df277 视频会议 2 vuotta sitten
..
test 视频会议 2 vuotta sitten
.travis.yml 视频会议 2 vuotta sitten
LICENSE 视频会议 2 vuotta sitten
README.md 视频会议 2 vuotta sitten
index.js 视频会议 2 vuotta sitten
package.json 视频会议 2 vuotta sitten

README.md

json-buffer

JSON functions that can convert buffers!

build status

testling badge

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(Buffer.from('hello there!'))

console.log(JSONB.parse(str)) //GET a BUFFER back

License

MIT