1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2024-06-17 09:53:17 +02:00
community-numbers/utils.js

10 lines
261 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.error(chalk.bold.red(text))
2019-05-14 20:52:48 +02:00
2019-06-06 20:26:32 +02:00
const arrSum = arr => arr.reduce((a, b) => a + b, 0)
module.exports = { log, logError, arrSum }