Files: 55fc93a9190c25f467ead205ab8d676b5191dbd4 / lib / plugins / heartbeat.js
276 bytesRaw
1 | const Pushable = require('pull-pushable') |
2 | module.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