UNPKG

array-predicates

Version:

Predicates that make working with js arrays easier.

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