Skip to content

Instantly share code, notes, and snippets.

@Poltergeist
Created March 7, 2016 13:46
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 Poltergeist/dfc0046cb468a8357be1 to your computer and use it in GitHub Desktop.
Save Poltergeist/dfc0046cb468a8357be1 to your computer and use it in GitHub Desktop.
hash script javascript
function hashCode(string) {
return Array.prototype.map.call(string, char => char.charCodeAt(0))
.reduce((hash, charCode) => {
hash = ((hash << 5) - hash) + charCode;
return hash & hash;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment