Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created May 13, 2021 07:11
Show Gist options
  • Save bluepnume/87ac43734b2c98c2fe83944a7c4f88a0 to your computer and use it in GitHub Desktop.
Save bluepnume/87ac43734b2c98c2fe83944a7c4f88a0 to your computer and use it in GitHub Desktop.
const doesHashPassDifficulty = (hash : string, difficulty : number) : boolean => {
return (parseInt(hash, 36) % difficulty) === 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment