(namespace)
| 75309 | function destroy() { |
| 75310 | const index = debuggers.indexOf(this); |
| 75311 | if (index >= 0) { |
| 75312 | debuggers.splice(index, 1); |
| 75313 | return true; |
| 75314 | } |
| 75315 | return false; |
| 75316 | } |
| 75317 | function extend2(namespace) { |
| 75318 | const newDebugger = createDebugger(`${this.namespace}:${namespace}`); |
nothing calls this directly
no test coverage detected