mirror of
https://github.com/oceanprotocol/community-numbers.git
synced 2025-01-18 16:57:45 +01:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
/* 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 }
|