GenerAI / worldmonitor /server /_shared /country-token.ts
amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 5)
20f83d9 verified
Raw
History Blame Contribute Delete
273 Bytes
export function normalizeCountryToken(value: unknown): string {
return String(value || '')
.normalize('NFKD')
.replace(/\p{Diacritic}/gu, '')
.toLowerCase()
.replace(/&/g, ' and ')
.replace(/[''.(),/-]/g, ' ')
.replace(/\s+/g, ' ')
.trim();
}