UNPKG

args

Version:

Minimal toolkit for building CLIs

14 lines (10 loc) 312 B
'use strict' module.exports = function(usage, description) { if (typeof usage !== 'string' || typeof description !== 'string') { throw new TypeError( 'Usage for adding an Example: args.example("usage", "description")' ) } this.details.examples.push({ usage, description }) return this }