(input)
| 30 | } |
| 31 | |
| 32 | function isObject(input) { |
| 33 | // IE8 will treat undefined and null as object if it wasn't for |
| 34 | // input != null |
| 35 | return ( |
| 36 | input != null && |
| 37 | Object.prototype.toString.call(input) === '[object Object]' |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | function hasOwnProp(a, b) { |
| 42 | return Object.prototype.hasOwnProperty.call(a, b); |
no outgoing calls
no test coverage detected