Code files
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
function content (opts, c = 20) {
|
||||
function produce (cb) {
|
||||
if (--c) setTimeout(produce, 10, cb)
|
||||
cb(null, opts.ohoh)
|
||||
}
|
||||
return produce
|
||||
}
|
||||
|
||||
module.exports = content
|
||||
Reference in New Issue
Block a user