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