* Formats the text to appear green * * @param {*} text * @return {string}
(text)
| 71 | * @return {string} |
| 72 | */ |
| 73 | function green(text) { |
| 74 | return '\x1b[32m' + text + '\x1b[0m'; |
| 75 | } |
| 76 | /** |
| 77 | * Formats the text to appear yellow |
| 78 | * |
no outgoing calls
no test coverage detected