blob: 200540566e86444f1f0e6bced1f41b6c873ab98e (
plain)
1
2
3
4
5
6
|
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();
}
|