Skip to content

Instantly share code, notes, and snippets.

@thysultan
Created November 13, 2018 12:26
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 thysultan/9d1141febf0abaa308c74793468be236 to your computer and use it in GitHub Desktop.
Save thysultan/9d1141febf0abaa308c74793468be236 to your computer and use it in GitHub Desktop.
prng
const prng = ((seed, size, value = seed % size) => () => ((value = value * 16807 % size - 1) - 1) / size)(4022871197, 2147483647)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment