(raw: unknown)
| 105 | } |
| 106 | |
| 107 | function isBundledCollection(raw: unknown): raw is UnknownRecord { |
| 108 | return isRecord(raw) && Array.isArray(raw.items) |
| 109 | } |
| 110 | |
| 111 | function isFolderFile(file: HttpImportFile, raw: unknown): boolean { |
| 112 | const info = getInfo(raw) |
no test coverage detected