* @param {boolean} useColor need to use color? * @param {string} msg message * @returns {string} message with color
(useColor, msg)
| 2829 | * @returns {string} message with color |
| 2830 | */ |
| 2831 | info(useColor, msg) { |
| 2832 | if (useColor) { |
| 2833 | return cyan(msg); |
| 2834 | } |
| 2835 | |
| 2836 | return msg; |
| 2837 | }, |
| 2838 | /** |
| 2839 | * @param {boolean} useColor need to use color? |
| 2840 | * @param {string} msg message |
no outgoing calls
no test coverage detected