UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

23 lines (18 loc) 423 B
'use strict'; const colors = { info(useColor, msg) { if (useColor) { // Make text blue and bold, so it *pops* return `\u001b[1m\u001b[34m${msg}\u001b[39m\u001b[22m`; } return msg; }, error(useColor, msg) { if (useColor) { // Make text red and bold, so it *pops* return `\u001b[1m\u001b[31m${msg}\u001b[39m\u001b[22m`; } return msg; }, }; module.exports = colors;