args
Version:
Minimal toolkit for building CLIs
16 lines (12 loc) • 328 B
JavaScript
module.exports = function(list) {
if (list.constructor !== Array) {
throw new Error('Item passed to .examples is not an array')
}
for (const item of list) {
const usage = item.usage || false
const description = item.description || false
this.example(usage, description)
}
return this
}