(path: string)
| 3328 | } |
| 3329 | |
| 3330 | function runtimeNodeId(path: string): string { |
| 3331 | return `runtime:${path.replace(/[^a-z0-9._-]+/giu, "-")}`; |
| 3332 | } |
| 3333 | |
| 3334 | function isDefined<T>(value: T | null | undefined): value is T { |
| 3335 | return value !== null && typeof value !== "undefined"; |
no outgoing calls
no test coverage detected