mirror of
https://github.com/oceanprotocol/community-numbers.git
synced 2024-12-23 01:29:49 +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 }
|