git ssb

1+

Dominic / secure-scuttlebutt



Tree: a2e6e922f8d9cb98c60e57c51b85a3fc9aad8494

Files: a2e6e922f8d9cb98c60e57c51b85a3fc9aad8494 / 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