Skip to content

Instantly share code, notes, and snippets.

@Driptap
Created May 22, 2018 08:59
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 Driptap/93b9f0fede1c3383731925328e9181b0 to your computer and use it in GitHub Desktop.
Save Driptap/93b9f0fede1c3383731925328e9181b0 to your computer and use it in GitHub Desktop.
Faker.js and Rosie.js helpers
const randomIntBetween = (min, max, string = false) => {
let int = Faker.random.number() % max + min;
return string ? String(int) : int;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment