UNPKG

array-predicates

Version:

Predicates that make working with js arrays easier.

6 lines (5 loc) 125 B
module.exports = function byPropValue(prop, value) { return function(obj) { return obj && obj[prop] === value; }; };