Skip to content

Instantly share code, notes, and snippets.

@ahafidi
Created October 29, 2020 22:02
Show Gist options
  • Save ahafidi/14b2e0d8c6106488f65e74c3724a08ad to your computer and use it in GitHub Desktop.
Save ahafidi/14b2e0d8c6106488f65e74c3724a08ad to your computer and use it in GitHub Desktop.
map = (fn, [head, ...tail]) =>
(head === undefined && tail.length < 1)
? []
: [fn(head), ...map(fn, tail)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment