We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66f955f commit 50b0102Copy full SHA for 50b0102
src/utils/isPlainObject.ts
@@ -10,5 +10,7 @@ export default function isPlainObject(obj: any): obj is object {
10
proto = Object.getPrototypeOf(proto)
11
}
12
13
- return Object.getPrototypeOf(obj) === proto || Object.getPrototypeOf(obj) === null
+ return (
14
+ Object.getPrototypeOf(obj) === proto || Object.getPrototypeOf(obj) === null
15
+ )
16
0 commit comments