Skip to content

Commit 2097cd2

Browse files
committed
Lint
1 parent fe925ae commit 2097cd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/is-object.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
function isObject(obj) {
10-
return null != obj && 'object' == typeof obj;
10+
return null !== obj && 'object' === typeof obj;
1111
}
1212

1313
module.exports = isObject;

0 commit comments

Comments
 (0)