Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save dubzzz/c08dc430cc3a49d0bf8df59b1d1b073a to your computer and use it in GitHub Desktop.
function map(g, mapper) {
return {
generate(mrng) {
const value = g.generate(mrng);
return mapper(value);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment