(obj)
| 25677 | } |
| 25678 | |
| 25679 | function isObjectEmpty(obj) { |
| 25680 | if (obj) { |
| 25681 | for (var prop in obj) { |
| 25682 | if (obj.hasOwnProperty(prop)) { |
| 25683 | return false; |
| 25684 | } |
| 25685 | } |
| 25686 | } |
| 25687 | return true; |
| 25688 | } |
| 25689 | |
| 25690 | /** |
| 25691 | * @ngdoc directive |
no outgoing calls
no test coverage detected