git ssb

0+

alanz / patchwork



forked from Matt McKegg / patchwork

Tree: 1a1dfa987b784a002e626f97e18aeaf2164d1299

Files: 1a1dfa987b784a002e626f97e18aeaf2164d1299 / sbot / heartbeat.js

281 bytesRaw
1var Pushable = require('pull-pushable')
2module.exports = function (ssb, config) {
3 return function () {
4 var stream = Pushable(() => {
5 clearInterval(timer)
6 })
7 var timer = setInterval(function () {
8 stream.push(Date.now())
9 }, 500)
10 return stream
11 }
12}
13

Built with git-ssb-web