Skip to content

Instantly share code, notes, and snippets.

@DorkNstein
Created August 31, 2017 19:17
Show Gist options
  • Save DorkNstein/2b8c3ca120ac5aa498bae365dc699173 to your computer and use it in GitHub Desktop.
Save DorkNstein/2b8c3ca120ac5aa498bae365dc699173 to your computer and use it in GitHub Desktop.
const seed = require('seed-random');
seed("<Unique string>", { global: true });
Math.random(); //number 1;
Math.random(); //number 2;
seed("<Unique string>", { global: true });
Math.random(); //number 1;
seed("<Unique string>", { global: true });
Math.random(); //number 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment