git ssb

2+

Dominic / pull-stream



Tree: 2b8ed0b778ffe06dbf19898b0cdeb8e009224087

Files: 2b8ed0b778ffe06dbf19898b0cdeb8e009224087 / 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