(obj)
| 29061 | } |
| 29062 | |
| 29063 | function isObjectEmpty(obj) { |
| 29064 | if (obj) { |
| 29065 | for (var prop in obj) { |
| 29066 | if (obj.hasOwnProperty(prop)) { |
| 29067 | return false; |
| 29068 | } |
| 29069 | } |
| 29070 | } |
| 29071 | return true; |
| 29072 | } |
| 29073 | |
| 29074 | /** |
| 29075 | * @ngdoc directive |
no outgoing calls
no test coverage detected