UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

12 lines (10 loc) 501 B
const utils = require('./index'); const util = require('util'); module.exports = { error: (val) => console.error(`[webpack-cli] ${utils.colors.red(util.format(val))}`), warn: (val) => console.warn(`[webpack-cli] ${utils.colors.yellow(val)}`), info: (val) => console.info(`[webpack-cli] ${utils.colors.cyan(val)}`), success: (val) => console.log(`[webpack-cli] ${utils.colors.green(val)}`), log: (val) => console.log(`[webpack-cli] ${val}`), raw: (val) => console.log(val), };