* Formats the text to appear yellow * * @param {*} text * @return {string}
(text)
| 80 | * @return {string} |
| 81 | */ |
| 82 | function yellow(text) { |
| 83 | return '\x1b[33m' + text + '\x1b[0m'; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * If yarn is being run, print a message and cause 'yarn install' to fail. |
no outgoing calls
no test coverage detected