buffer-json-encoding
Version:
An abstract-encoding compatible JSON encoder/decoder that properly encodes/decodes buffers.
34 lines (29 loc) • 847 B
JavaScript
const BJSON = require('buffer-json')
function encode (obj, buf, offset = 0) {
const str = BJSON.stringify(obj)
const length = Buffer.byteLength(str, 'utf8')
if (typeof buf === 'number') {
offset = buf
buf = Buffer.alloc(offset + length)
} else if (typeof buf === 'undefined') {
buf = Buffer.alloc(offset + length)
}
if (buf.length < offset + length) {
throw new Error('provided buffer is too small')
}
buf.write(str, offset, length, 'utf8')
encode.bytes = length
return buf
}
function decode (buf, start, end) {
start = start || 0
end = end || buf.length
const sliced = buf.slice(start, end)
const str = sliced.toString('utf8')
decode.bytes = end - start
return BJSON.parse(str)
}
function encodingLength (obj) {
return encode(obj).length
}
module.exports = { encode, decode, encodingLength }