File size: 283 Bytes
6f55a1e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
const chalk = require('chalk')
const color = (text, color) => {
return !color ? chalk.green(text) : chalk.keyword(color)(text)
}
const bgcolor = (text, bgcolor) => {
return !bgcolor ? chalk.green(text) : chalk.bgKeyword(bgcolor)(text)
}
module.exports = {
color,
bgcolor
}
|