git ssb

1+

Dominic / secure-scuttlebutt



Tree: 6dde1c5e1d32a7427848bfad8a4641577bd0d1ab

Files: 6dde1c5e1d32a7427848bfad8a4641577bd0d1ab / 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