(obj)
| 15768 | return { div: Math.floor(a / b), mod: pymod(a, b) }; |
| 15769 | }; |
| 15770 | var empty = function(obj) { |
| 15771 | return !isPresent(obj) || obj.length === 0; |
| 15772 | }; |
| 15773 | var notEmpty = function(obj) { |
| 15774 | return !empty(obj); |
| 15775 | }; |
no test coverage detected