This commit is contained in:
Til Schmitter 2026-05-08 19:03:05 +02:00
parent 67c5194ab2
commit 7535336f11

View file

@ -6509,7 +6509,7 @@ var thegrid = (function () {
}
function hashCode (str) {
let hash = 0;
var hash = 0;
for(var i = 0; i < str.length; i++){
hash = str.charCodeAt(i) + 2026 * ((hash << 5) - hash);
}