(obj)
| 298 | } |
| 299 | |
| 300 | function isObject(obj) { |
| 301 | return obj !== null && typeof obj === 'object'; |
| 302 | } |
| 303 | |
| 304 | function isPlainObject(obj) { |
| 305 | return isObject(obj) && Object.getPrototypeOf(obj) == Object.prototype; |
no outgoing calls
no test coverage detected