func-prop

0.0.1 • Public • Published

prop

 
var prop = require( 'func-prop' )
 
var fighters = [
  {name: 'Evander'},
  {name: 'Muhammed'},
  {name: 'Mike'}
]
 
fighters.map( prop('name') ) 
//-> ['Evander', 'Muhammed', 'Mike']
 

invoke.backbone

Allso works with backbone style model objects that has the method get

 
var prop = require( 'func-prop' ).backbone
 
var fighters = new FightersCollection()
figthers.reset( fighters )
 
fighters.map( prop('name') )
//-> ['Evander', 'Muhammed', 'Mike']

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i func-prop

    Weekly Downloads

    1

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • gorillatron