Write a status and message to the UI @private @method _writeStatusToUI @param {Function} chalkColor @param {String} keyword @param {String} message
(chalkColor, keyword, message)
| 316 | @param {String} message |
| 317 | */ |
| 318 | _writeStatusToUI(chalkColor, keyword, message) { |
| 319 | if (this.ui) { |
| 320 | this.ui.writeLine(` ${chalkColor(keyword)} ${message}`); |
| 321 | } |
| 322 | }, |
| 323 | |
| 324 | /** |
| 325 | @private |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…