git ssb

1+

Matt McKegg / mutant



Tree: fd48051c9a0ccc1e5fd254db048758d8eff91383

Files: fd48051c9a0ccc1e5fd254db048758d8eff91383 / idle-proxy.js

196 bytesRaw
1var Proxy = require('./proxy')
2var onceIdle = require('./once-idle')
3
4module.exports = function IdleProxy (fn) {
5 var obs = Proxy()
6 onceIdle(function () {
7 obs.set(fn())
8 })
9 return obs
10}
11

Built with git-ssb-web