Created
December 21, 2021 15:48
-
-
Save HonzaMac/2d12aaab34f1636151a4c86cd1e4d10f to your computer and use it in GitHub Desktop.
Faker seed value
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 seedValue = 100; | |
faker.seed(seedValue); | |
console.log(faker.name.findName()); | |
// Vždy vypíše stejné jméno: "Eva Jenkins" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment