1.0.0 • Published 9 years ago

funderscore v1.0.0

Weekly downloads
22
License
MIT
Repository
github
Last release
9 years ago

funderscore

happy functional funtimes version of _

usage

var _ = require('funderscore')

var foo = {
  a: 'ha',
  b: 'ob',
  c: 'ac'
}

_.reduce(
  _.map(foo, function (val) {
      return val[1].toUpperCase()
    }),
  function (seed, val, key) {
      seed[key+'M'] = val
      return seed
    })
  )
// => {
//      aM: 'A',
//      bM: 'B',
//      cM: 'C'
//    } 

stability

api likely to change. I want to experiment more with chaining, possibly using this

installation

$ npm install funderscore

contributors

jden jason@denizac.org

license

MIT. (c) 2013 jden jason@denizac.org. See LICENSE.md

1.0.0

9 years ago

0.7.0

10 years ago

0.6.2

11 years ago

0.6.1

11 years ago

0.6.0

11 years ago

0.5.0

11 years ago

0.4.0

11 years ago

0.3.0

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago