UNPKG

@tommymynnson/lotide

Version:

A mini clone of the [Lodash](https://lodash.com) library.

11 lines (8 loc) 170 B
const map = (array, callback) => { const results = []; for (const item of array) { results.push(callback(item)); } return results; }; module.exports = map;