Skip to content

Instantly share code, notes, and snippets.

@wilmoore

wilmoore/map.js Secret

Last active January 16, 2020 17:43
Show Gist options
  • Select an option

  • Save wilmoore/2e5cc9ddf0bdbe74845d to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/2e5cc9ddf0bdbe74845d to your computer and use it in GitHub Desktop.
map mock up
function map (fn, list) {
const end = list.length - 1
const idx = -1
var out = []
while (++idx < end) {
out.push(fn(list[idx]))
}
return out
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment