()
| 105 | } |
| 106 | |
| 107 | function stamp() { |
| 108 | return new Date() |
| 109 | .toISOString() |
| 110 | .replace(/[-:]/g, "") |
| 111 | .replace(/\.\d+Z$/, "") |
| 112 | } |
| 113 | |
| 114 | function safeLogName(name: string) { |
| 115 | return name.replace(/[^a-z0-9_.-]/gi, "_") || "main" |
no outgoing calls
no test coverage detected