* Quick object check - this is primarily used to tell * Objects from primitive values when we know the value * is a JSON-compliant type.
(obj)
| 49 | * is a JSON-compliant type. |
| 50 | */ |
| 51 | function isObject (obj) { |
| 52 | return obj !== null && typeof obj === 'object' |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Get the raw type string of a value, e.g., [object Object]. |
no outgoing calls
no test coverage detected