UNPKG

array-predicates

Version:

Predicates that make working with js arrays easier.

6 lines (5 loc) 100 B
module.exports = function byValue(val) { return function(item) { return item === val; }; };