Skip to content

Commit ddbfc5a

Browse files
committed
Delint isPlainObject util
1 parent a5a6bf4 commit ddbfc5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/isPlainObject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default function isPlainObject(obj) {
2-
return typeof obj == 'object' && Object.getPrototypeOf(obj) === Object.prototype;
2+
return typeof obj === 'object' && Object.getPrototypeOf(obj) === Object.prototype;
33
}

0 commit comments

Comments
 (0)