1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2024-06-26 03:06:47 +02:00
community-numbers/utils.js

10 lines
261 B
JavaScript

/* eslint-disable no-console */
const chalk = require('chalk')
const log = text => console.log(text)
const logError = text => console.error(chalk.bold.red(text))
const arrSum = arr => arr.reduce((a, b) => a + b, 0)
module.exports = { log, logError, arrSum }