Skip to content

Instantly share code, notes, and snippets.

@maurobringolf
Last active June 3, 2017 14:10
Show Gist options
  • Save maurobringolf/ec5c633d91420a8ee5b7203b34a77d8c to your computer and use it in GitHub Desktop.
Save maurobringolf/ec5c633d91420a8ee5b7203b34a77d8c to your computer and use it in GitHub Desktop.
function map(arr, fn) {
 return arr.reduce((acc, item) => […acc, fn(item)], [])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment