mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* feat: Improve duplicate suggestion * format * feat(web): Add deduplication info popup * fix: lint * fmt --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
5 lines
185 B
TypeScript
5 lines
185 B
TypeScript
import type { AssetResponseDto } from '@immich/sdk';
|
|
|
|
export const getExifCount = (asset: AssetResponseDto) => {
|
|
return Object.values(asset.exifInfo ?? {}).filter(Boolean).length;
|
|
};
|