(name: string)
| 112 | } |
| 113 | |
| 114 | function safeLogName(name: string) { |
| 115 | return name.replace(/[^a-z0-9_.-]/gi, "_") || "main" |
| 116 | } |
| 117 | |
| 118 | function cleanup() { |
| 119 | const dir = root || dirname(log.transports.file.getFile().path) |
no outgoing calls
no test coverage detected