(input)
| 14731 | } |
| 14732 | |
| 14733 | function isObject(input) { |
| 14734 | // IE8 will treat undefined and null as object if it wasn't for |
| 14735 | // input != null |
| 14736 | return input != null && Object.prototype.toString.call(input) === '[object Object]'; |
| 14737 | } |
| 14738 | |
| 14739 | function isObjectEmpty(obj) { |
| 14740 | if (Object.getOwnPropertyNames) { |
no outgoing calls
no test coverage detected