-1}>
{#if images.length > 1}
{#each images as _, i}
{/if}
{#if currentIndex > -1}
{#if progress[currentIndex] && progress[currentIndex] < 0.99}
{/if}
{#if images[currentIndex].exif}
{@const exif = images[currentIndex].exif}
console.log(exif)}>
{#if "FocalLength" in exif}
{exif.FocalLength}mm |
{/if}
{#if "FNumber" in exif}
f{exif.FNumber} |
{/if}
{#if "ExposureTime" in exif}
{exif.ExposureTime.replace(" s", "s")} |
{/if}
{#if "Date" in exif}
{exif.Date}
{/if}
{/if}
{/if}