A curried map function that works with Functors
Install with component(1):
$ component install jasonkuhrt/map
Install with npm(1):
$ npm install jasonkuhrt/map
var map = require('map');
var add = require('add');
var add1 = add(1);
map(add1, [1,2,3]);
// [1,2,3]
// First, curry map to a specialty version
var map_add1 = map(add1);
map_add1([1,2,3]);
// [2,3,4]
BSD-2-Clause