mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
8 lines
226 B
TypeScript
8 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());
|
||
|
|
};
|