* Setup the params if not set already. * @private * @static * @memberof Debugger
()
| 48 | * @memberof Debugger |
| 49 | */ |
| 50 | static initParams() { |
| 51 | if (!window[Debugger.paramKey]) { |
| 52 | window[Debugger.paramKey] = { |
| 53 | emitEnabled: false, |
| 54 | enabled: true, |
| 55 | minLevel: 1 |
| 56 | }; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * If emitting is enabled for this instance, then it will dispatch an event on the window. |
no outgoing calls
no test coverage detected