(obj)
| 26543 | } |
| 26544 | |
| 26545 | function isObjectEmpty(obj) { |
| 26546 | if (obj) { |
| 26547 | for (var prop in obj) { |
| 26548 | if (obj.hasOwnProperty(prop)) { |
| 26549 | return false; |
| 26550 | } |
| 26551 | } |
| 26552 | } |
| 26553 | return true; |
| 26554 | } |
| 26555 | |
| 26556 | /** |
| 26557 | * @ngdoc directive |
no outgoing calls
no test coverage detected