2021-02-07 01:43:34 +00: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 04:40:33 +00:00
|
|
|
return tag.normalize("NFKC").toLowerCase();
|
2021-02-07 01:43:34 +00:00
|
|
|
}
|