Skip to content

Instantly share code, notes, and snippets.

@dubzzz
Created July 2, 2020 17:02
Show Gist options
  • Select an option

  • Save dubzzz/4f3d227eb4af491da8b506503fd3174f to your computer and use it in GitHub Desktop.

Select an option

Save dubzzz/4f3d227eb4af491da8b506503fd3174f to your computer and use it in GitHub Desktop.
// const miniFc = {}
miniFc.integer = (min, max) => {
return {
generate(mrng) {
return mrng.next(min, max);
}
};
}
// It can be used as follow:
// > miniFc.integer(0, 50).generate(mrng)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment