2021-02-07 02:43:34 +01:00
|
|
|
export function normalizeForSearch(tag: string): string {
|
|
|
|
// ref.
|
|
|
|
// - https://analytics-note.xyz/programming/unicode-normalization-forms/
|
|
|
|
// - https://maku77.github.io/js/string/normalize.html
|
2023-01-13 05:40:33 +01:00
|
|
|
return tag.normalize("NFKC").toLowerCase();
|
2021-02-07 02:43:34 +01:00
|
|
|
}
|