mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 20:07:33 -07:00
14148f6c4a
Resolve #7779
6 lines
244 B
TypeScript
6 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();
|
|
}
|