Home Reference Source Test

src/utils/map.js

/**
 * @ignore
 *
 */
module.exports = function mapComposer(arr) {
  return fn => arr.map(fn);
};