(namespace, delimiter)
| 147 | } |
| 148 | |
| 149 | function extend(namespace, delimiter) { |
| 150 | const newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace); |
| 151 | newDebug.log = this.log; |
| 152 | return newDebug; |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Enables a debug mode by namespaces. This can include modes |
nothing calls this directly
no test coverage detected