Skip to content

Instantly share code, notes, and snippets.

@kvanbere
Last active November 17, 2017 08:52
Show Gist options
  • Save kvanbere/6f871314e0f24364d8bde34b7b7ab849 to your computer and use it in GitHub Desktop.
Save kvanbere/6f871314e0f24364d8bde34b7b7ab849 to your computer and use it in GitHub Desktop.
function hasher(str) {
return Array
.from(str)
//.slice(0, 10)
.reduce(function(acc, i) {
return 0xffffffff & ((acc << 5) - acc) + i.charCodeAt(0); }, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment