color.js 148 B

12345
  1. const chalk = require('chalk')
  2. module.exports = color = (text, color) => {
  3. return !color ? chalk.green(text) : chalk.keyword(color)(text)
  4. }