(hrefOrUrl: string | URL)
| 191 | } |
| 192 | |
| 193 | function redactUrlSecrets(hrefOrUrl: string | URL) { |
| 194 | const url = new URL(hrefOrUrl); |
| 195 | url.password = ""; |
| 196 | return url.href; |
| 197 | } |
| 198 | |
| 199 | export type { PrismaClient } from "@trigger.dev/database"; |
| 200 |
no outgoing calls
no test coverage detected
searching dependent graphs…