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

10 lines
267 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 }