UNPKG

@ipfn/cell-codecs

Version:
14 lines (13 loc) 305 B
"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, };