UNPKG

@matrixoc/snippet

Version:
15 lines (13 loc) 338 B
/* -= Snippet =- Sends a stylized message to the console. */ var colors = require('colors'); module.exports = function(type, arg) { if(type == 'error') { console.log('[SNIPPET ' + '!ERR'.red + ']' + arg) process.exit(0); } else if(type == 'good') { console.log('[SNIPPET ' + '!OUT'.green + ']' + arg) } }