mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
export const removeAccents = (str: string) => {
|
|
return str.normalize('NFD').replaceAll(/[\u0300-\u036F]/g, '');
|
|
};
|
|
|
|
export const normalizeSearchString = (str: string) => {
|
|
return removeAccents(str.toLocaleLowerCase());
|
|
};
|