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

5 lines
105 B
JavaScript

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