Skip to content

Instantly share code, notes, and snippets.

@dewey92
Created April 18, 2017 14:23
Show Gist options
  • Save dewey92/4fa98c0eeb6ef9715004cbf938acf598 to your computer and use it in GitHub Desktop.
Save dewey92/4fa98c0eeb6ef9715004cbf938acf598 to your computer and use it in GitHub Desktop.
const map = (fn, arr) => {
const [head, ...tail] = arr
if (tail[0] === undefined) return [fn(head)]
return [fn(head), ...map(fn, tail)]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment