()
| 320 | |
| 321 | // Setup global references and shortcuts |
| 322 | export function initializeDebugger() { |
| 323 | // Create global debug instance |
| 324 | window.CarrotDebug = CarrotDebug; |
| 325 | |
| 326 | // Console shortcuts |
| 327 | if (typeof window !== 'undefined') { |
| 328 | window.cd = CarrotDebug; |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | // Export test functions for easier access |
| 333 | export const debugTests = { |