(value: unknown)
| 181 | |
| 182 | // only returns true for plain objects, not instances of classes |
| 183 | function isPlainObject(value: unknown): value is object { |
| 184 | return ( |
| 185 | typeof value === "object" && |
| 186 | value !== null && |
| 187 | !Array.isArray(value) && |
| 188 | value.constructor === Object |
| 189 | ); |
| 190 | } |