* @param {boolean} useColor need to use color? * @param {string} msg message * @returns {string} message with colors
(useColor, msg)
| 2841 | * @returns {string} message with colors |
| 2842 | */ |
| 2843 | error(useColor, msg) { |
| 2844 | if (useColor) { |
| 2845 | return red(msg); |
| 2846 | } |
| 2847 | |
| 2848 | return msg; |
| 2849 | }, |
| 2850 | }; |
| 2851 | const useColor = getColorsOption(this.getCompilerOptions()); |
| 2852 |
no outgoing calls
no test coverage detected