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