Skip to content

Instantly share code, notes, and snippets.

@DanShappir
Created November 6, 2019 12:25
Show Gist options
  • Save DanShappir/34c4b3995b17e43f47ccf618ef276ff4 to your computer and use it in GitHub Desktop.
Save DanShappir/34c4b3995b17e43f47ccf618ef276ff4 to your computer and use it in GitHub Desktop.
Simple map generator
function* map(src, op) {
for (const value of src) {
yield op(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment