2017-07-31 11:33:31 +05:30

6 lines
106 B
JavaScript

function content (opts, c = 20) {
return --c ? content(opts, c) : opts.ohoh
}
module.exports = content