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