UNPKG

martincapo_cli

Version:
12 lines (11 loc) 297 B
const alert = require('bee-alerts'); module.exports = (isDebug, cli) => { if(isDebug){ alert({type: `warning`,msg:`DEBUGGING INFO ↓`}); console.log(`input `, cli.input); console.log(`flags `, cli.flags); console.log(); } else { return; } };