(err: unknown)
| 449 | } |
| 450 | |
| 451 | function errorMessage(err: unknown): string { |
| 452 | return err instanceof Error ? err.message : "LUT failed to load"; |
| 453 | } |
| 454 | |
| 455 | function getCubeLut(src: string): LutCacheEntry { |
| 456 | const resolved = resolveLutUrl(src); |
no outgoing calls
no test coverage detected