UNPKG

105 BJavaScriptView Raw
1module.exports = function(op, a, fn) {
2 var ret = op(a);
3
4 return !ret || a.indexOf(ret) >= 0;
5};
6