git ssb

2+

dinoworm ๐Ÿ› / ssb-graphviz



Tree: ca718f616a051e93adeb22faa3fc06646f667973

Files: ca718f616a051e93adeb22faa3fc06646f667973 / graph / helpers / build-nodes.js

215 bytesRaw
1const { keys } = Object
2
3module.exports = buildNodes
4
5function buildNodes (friends) {
6 return keys(friends).map(id => {
7 return {
8 id,
9 data: {
10 friends: keys(friends[id])
11 }
12 }
13 })
14}
15
16

Built with git-ssb-web