git ssb

2+

Dominic / pull-stream



Tree: 4c7ae55ea2df8d52977d122b65825b9350020303

Files: 4c7ae55ea2df8d52977d122b65825b9350020303 / sources / infinite.js

201 bytesRaw
1'use strict'
2module.exports = function infinite (generate) {
3 generate = generate || Math.random
4 return function (end, cb) {
5 if(end) return cb && cb(end)
6 return cb(null, generate())
7 }
8}
9
10
11

Built with git-ssb-web