mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
const { yellow, red, bgRed } = require('kleur')
|
|
|
|
const printer = (message, title) => {
|
|
console.clear()
|
|
if (title) console.log(bgRed(`${title}`))
|
|
console.log(yellow(Array.isArray(message) ? message.join('\n') : message))
|
|
console.log(``)
|
|
}
|
|
|
|
module.exports = { printer }
|