map

Functional map

  • map

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
map
1.0.18 years ago11 years agoMinified + gzip package size for map in KB

Readme

Map

Usage

const map = require('map')
const increment = map(a => a + 1)
const list = [1, 2, 3]

const incrementedList = increment(list)
// => [2, 3, 4]