* Quick object check - this is primarily used to tell * Objects from primitive values when we know the value * is a JSON-compliant type.
(obj)
| 158 | * is a JSON-compliant type. |
| 159 | */ |
| 160 | function isObject (obj) { |
| 161 | return obj !== null && typeof obj === 'object' |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Strict object type check. Only returns true |
no outgoing calls
no test coverage detected