UNPKG

create-electrojet

Version:

Setup Modern Javascript Applications with a single command

12 lines (9 loc) 202 B
const chalk = require("chalk"); /** * Outputs specific style to console * @param {string} text */ const greeing = text => { console.log(chalk.bold.cyanBright(text)); }; module.exports = greeing;