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