Your Conversions
{#if files.files.length === 0}

No files uploaded. Head to the Upload tab to begin!

{:else}

Options

Set all target formats

{#if !multipleConverters && noMultConverter}
{ // files.conversionTypes = Array.from( // { length: files.files.length }, // () => o, // ); files.files.forEach((file) => { file.result = null; file.to = o; }); }} />
{:else}
The listed files require different converters, so you can't set them in bulk.
{/if}
{#each reversedFiles as file, i (file.id)} {@const converter = (() => { return converters.find((c) => c.supportedFormats.includes(file.from), ); })()}
{file.file.name}
{#if converter && converter.supportedFormats.includes(file.from)}
{file.from}
{ file.result = null; }} />
{:else} {file.from} is not supported! {/if}
{#if converter && converter.supportedFormats.includes(file.from)}
{/if}
{/each}
{/if}