(obj)
| 15771 | return !isPresent(obj) || obj.length === 0; |
| 15772 | }; |
| 15773 | var notEmpty = function(obj) { |
| 15774 | return !empty(obj); |
| 15775 | }; |
| 15776 | var includes = function(arr, val) { |
| 15777 | return notEmpty(arr) && arr.indexOf(val) !== -1; |
| 15778 | }; |
no test coverage detected