(raw: string)
| 65 | } |
| 66 | |
| 67 | function isAbsolutePath(raw: string) { |
| 68 | return path.isAbsolute(raw) || /^[A-Za-z]:[\\/]/.test(raw) |
| 69 | } |
| 70 | |
| 71 | function extractExportValue(value: unknown): string | undefined { |
| 72 | if (typeof value === "string") return value |
no outgoing calls
no test coverage detected