2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:50:11 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
return tag.normalize('NFKC').toLowerCase();
|
|
|
|
}
|