(file: RawFileInput)
| 696 | } |
| 697 | |
| 698 | function resolveInternalFileUrl(file: RawFileInput): string { |
| 699 | if (file.url && isInternalFileUrl(file.url)) { |
| 700 | return file.url |
| 701 | } |
| 702 | if (file.path && isInternalFileUrl(file.path)) { |
| 703 | return file.path |
| 704 | } |
| 705 | return '' |
| 706 | } |
| 707 | |
| 708 | /** |
| 709 | * Provider large-file handles are populated by the server pipeline and must never be |
no test coverage detected