Files: 9d9abd26492b94a6b650b38e7db4ef41257d64d7 / sources / infinite.js
201 bytesRaw
1 | |
2 | module.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