mirror of
https://github.com/oceanprotocol/community-numbers.git
synced 2024-11-25 11:28: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 }
|