Skip to content

Instantly share code, notes, and snippets.

@antoniopresto
Created April 2, 2019 17:52
Show Gist options
  • Save antoniopresto/2fe6fb3fc39b62ad769f84cddf7dc9e2 to your computer and use it in GitHub Desktop.
Save antoniopresto/2fe6fb3fc39b62ad769f84cddf7dc9e2 to your computer and use it in GitHub Desktop.
// https://stackoverflow.com/a/40958850
function hashStr(str) {
let hash = 0, i, chr, len;
if (str.length === 0) return hash;
for (i = 0, len = str.length; i < len; i++) {
chr = str.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment