git ssb

1+

Dominic / secure-scuttlebutt



Tree: 24347ad96cb0abe203631fec2dd50a9b85a2a926

Files: 24347ad96cb0abe203631fec2dd50a9b85a2a926 / 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