* Formats the text to appear cyan * * @param {*} text * @return {string}
(text)
| 62 | * @return {string} |
| 63 | */ |
| 64 | function cyan(text) { |
| 65 | return '\x1b[36m' + text + '\x1b[0m'; |
| 66 | } |
| 67 | /** |
| 68 | * Formats the text to appear green |
| 69 | * |
no outgoing calls
no test coverage detected