Files
Node.js-14-Cookbook/Chapter01/enhancing-stack-traces/async-stack-app/content.js
T
2017-07-31 11:33:31 +05:30

10 lines
174 B
JavaScript

function content (opts, c = 20) {
function produce (cb) {
if (--c) setTimeout(produce, 10, cb)
cb(null, opts.ohoh)
}
return produce
}
module.exports = content