(message, type = 'info')
| 56 | |
| 57 | // Logging utilities |
| 58 | function log(message, type = 'info') { |
| 59 | const colors = { |
| 60 | info: '\x1b[0m', |
| 61 | success: '\x1b[32m', |
| 62 | error: '\x1b[31m', |
| 63 | warning: '\x1b[33m', |
| 64 | dim: '\x1b[2m' |
| 65 | }; |
| 66 | console.log(`${colors[type]}${message}\x1b[0m`); |
| 67 | } |
| 68 | |
| 69 | // Cache management utilities |
| 70 | function loadCache() { |
no outgoing calls
no test coverage detected