amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 8)
dbb1bf9 verified
Raw
History Blame Contribute Delete
310 Bytes
export function hashString(input: string): string {
let h = 0xcbf29ce484222325n;
const FNV_PRIME = 0x100000001b3n;
const MASK_52 = (1n << 52n) - 1n;
for (let i = 0; i < input.length; i++) {
h ^= BigInt(input.charCodeAt(i));
h = (h * FNV_PRIME) & MASK_52;
}
return Number(h).toString(36);
}