* Formats the text to appear red * * @param {*} text * @return {string}
(text)
| 53 | * @return {string} |
| 54 | */ |
| 55 | function red(text) { |
| 56 | return '\x1b[31m' + text + '\x1b[0m'; |
| 57 | } |
| 58 | /** |
| 59 | * Formats the text to appear cyan |
| 60 | * |
no outgoing calls
no test coverage detected