community-numbers/util/logger.js

8 lines
197 B
JavaScript
Raw Normal View History

2019-05-14 20:52:48 +02:00
/* eslint-disable no-console */
const chalk = require('chalk')
const log = text => console.log(text)
const logError = text => console.log(chalk.bold.red(text))
module.exports = { log, logError }