* Quick object check - this is primarily used to tell * Objects from primitive values when we know the value * is a JSON-compliant type. * * @param {*} obj * @return {Boolean}
(obj)
| 265 | */ |
| 266 | |
| 267 | function isObject(obj) { |
| 268 | return obj !== null && typeof obj === 'object'; |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * Strict object type check. Only returns true |
no outgoing calls
no test coverage detected