* In development, starts the debugger.
()
| 11 | * In development, starts the debugger. |
| 12 | */ |
| 13 | function devDebugger(): void { |
| 14 | if (getEnvironment() === Environment.Development) { |
| 15 | debugger; // oxlint-disable-line no-debugger |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * In production and beta, logs a warning and continues. For development it |
no test coverage detected