1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-20 17:48:41 +09:00
MisskeyIO/src/misc/normalize-for-search.ts

7 lines
244 B
TypeScript
Raw Normal View History

2021-02-07 10:43:34 +09: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();
}