(obj)
| 27005 | } |
| 27006 | |
| 27007 | function isObjectEmpty(obj) { |
| 27008 | if (obj) { |
| 27009 | for (var prop in obj) { |
| 27010 | if (obj.hasOwnProperty(prop)) { |
| 27011 | return false; |
| 27012 | } |
| 27013 | } |
| 27014 | } |
| 27015 | return true; |
| 27016 | } |
| 27017 | |
| 27018 | /** |
| 27019 | * @ngdoc directive |
no outgoing calls
no test coverage detected