UNPKG

webpack-papa-script

Version:
17 lines (15 loc) 306 B
const { isMochaTest } = require('../config'); const chalk = require('chalk'); /* istanbul ignore next */ module.exports = { log(){ if(isMochaTest()) return; console.log.apply(console, arguments); }, cyan(t){ this.log(chalk.cyan(t)); }, red(t){ this.log(chalk.red(t)); } };