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

10 lines
267 B
JavaScript
Raw Normal View History

2019-05-14 20:52:48 +02:00
/* eslint-disable no-console */
const chalk = require('chalk')
2020-06-16 12:32:47 +02:00
const log = (text) => console.log(text)
const logError = (text) => console.error(chalk.bold.red(text))
2019-05-14 20:52:48 +02:00
2020-06-16 12:32:47 +02:00
const arrSum = (arr) => arr.reduce((a, b) => a + b, 0)
2019-06-06 20:26:32 +02:00
module.exports = { log, logError, arrSum }