Skip to content

Instantly share code, notes, and snippets.

@frankinedinburgh
Created July 15, 2018 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankinedinburgh/adc4fb72a57bb9d6b178e23036ffb22d to your computer and use it in GitHub Desktop.
Save frankinedinburgh/adc4fb72a57bb9d6b178e23036ffb22d to your computer and use it in GitHub Desktop.
hash a string
export default function hash(str) {
var hash = 0, i, chr;
if (str.length === 0) return hash;
for (i = 0; i < str.length; 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