UNPKG

@stewartmac/lotide

Version:

Modular collection of functions that operate on data, namely Arrays and Objects.

9 lines (8 loc) 171 B
const map = function(array, callback) { const results = []; for (let item of array) { results.push(callback(item)); } return results; }; module.exports = map;