Created
August 31, 2017 19:17
-
-
Save DorkNstein/2b8c3ca120ac5aa498bae365dc699173 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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