UNPKG

cli-learning-in-nodejs

Version:
6 lines (5 loc) 159 B
const figlet = require("figlet"); const chalk = require("chalk"); module.exports = (title) => { console.log(chalk.yellow(figlet.textSync(title))); };