git ssb

1+

Daan Patchwork / patchwork



Tree: 06ded70b47c2b7b6dbd436a59f532f6caff0e67c

Files: 06ded70b47c2b7b6dbd436a59f532f6caff0e67c / lib / plugins / heartbeat.js

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

Built with git-ssb-web