Skip to content

Instantly share code, notes, and snippets.

@awto
Created June 10, 2018 16:32
Show Gist options
  • Save awto/f16c71defd3ddf82961ca77fd6664306 to your computer and use it in GitHub Desktop.
Save awto/f16c71defd3ddf82961ca77fd6664306 to your computer and use it in GitHub Desktop.
abstract matters dup
function* dup(arr) {
for(const i of arr) {
yield i;
yield i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment