UNPKG

array-predicates

Version:

Predicates that make working with js arrays easier.

6 lines (5 loc) 105 B
module.exports = function byProp(prop) { return function(obj) { return obj && prop in obj; }; };