UNPKG

es5-workshop

Version:
8 lines (6 loc) 155 B
function map(arr, fn) { return arr.reduce(function(acc, item, index, arr) { return acc.concat(fn(item, index, arr)) }, []) } module.exports = map