Files
starface-outlook-sync-addin/node_modules/thingies/lib/hash.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

12 lines
280 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.hash = void 0;
const hash = (str) => {
let hash = 5381;
let i = str.length;
while (i)
hash = (hash * 33) ^ str.charCodeAt(--i);
return hash >>> 0;
};
exports.hash = hash;