Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Last active May 5, 2019 15:39
Show Gist options
  • Save Tombarr/d449d754f19030e6b67cb60f4090302a to your computer and use it in GitHub Desktop.
Save Tombarr/d449d754f19030e6b67cb60f4090302a to your computer and use it in GitHub Desktop.
const hashCode = str => Array.from(str)
.reduce((h, c) => Math.imul(31, h) + c.charCodeAt(0) | 0, 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment