immich/web/src/lib/utils/exif-utils.ts

6 lines
185 B
TypeScript
Raw Normal View History

import type { AssetResponseDto } from '@immich/sdk';
export const getExifCount = (asset: AssetResponseDto) => {
return Object.values(asset.exifInfo ?? {}).filter(Boolean).length;
};