git ssb

1+

Dominic / secure-scuttlebutt



Tree: 3cfd9eef195bcaa471c606769c2341d6df7536dd

Files: 3cfd9eef195bcaa471c606769c2341d6df7536dd / codec.js

175 bytesRaw
1module.exports = {
2 decode: function (string) {
3 return JSON.parse(string)
4 },
5 encode: function (obj) {
6 return JSON.stringify(obj, null, 2)
7 },
8 buffer: false
9}
10
11

Built with git-ssb-web