Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Einstein committed Jun 23, 2017
1 parent f0f5200 commit 9371453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/is-equal.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const isEqual = (a, b) => {
Object.keys(a).forEach(key => {
if (b[key] === undefined) {
if (typeof b[key] === 'undefined') {
return false
}

Expand Down

0 comments on commit 9371453

Please sign in to comment.