mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 00:13:09 +02:00
0e4a111f81
Resolve #7779
6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
export function normalizeForSearch(tag: string): string {
|
|
// ref.
|
|
// - https://analytics-note.xyz/programming/unicode-normalization-forms/
|
|
// - https://maku77.github.io/js/string/normalize.html
|
|
return tag.normalize('NFKC').toLowerCase();
|
|
}
|