"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function encode(cell) {
return JSON.stringify(cell);
}
function decode(body) {
return JSON.parse(body instanceof Buffer ? body.toString() : body);
}
exports.codec = {
name: 'cell-json-v1',
encode,
decode,
};