Last active
June 10, 2017 21:36
-
-
Save sshaw/e21c9a7c82aff15359804e90ea7042a3 to your computer and use it in GitHub Desktop.
JavaScript function to pluck truthy properties and functions from an Array of Objects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/sshaw/e21c9a7c82aff15359804e90ea7042a3 | |
// Pluck truthy properties and functions from an Array of Objects | |
// | |
// var a = [ {id: 123}, {id: 0}, {id: false}, {id: function() { return 'foo' }} ] | |
// pick('id', a) returns [123, 'foo'] | |
// var f = pick('id') | |
// f(a) | |
var pick = function(property, array) { | |
var picker = function(_array) { | |
return _array.reduce(function(acc, v) { | |
var value = v[property]; | |
if(typeof value === 'function') | |
value = value(); | |
if(value) | |
acc.push(value); | |
return acc; | |
}, []); | |
}; | |
return array !== undefined ? picker(array) : picker; | |
}; | |
export default pick; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment