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