mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-12 05:39:00 +09:00
7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
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();
|
|
}
|