Skip to content

Commit

Permalink
Fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederik Kvartborg committed Aug 21, 2017
1 parent 6f20676 commit f4219b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/set.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function set (item, path, value) {
acc[path] = {}
}

if (!acc[path] && !isNaN(path) ) {
if (!acc[path] && !isNaN(path)) {
acc[path] = []
}

Expand Down

0 comments on commit f4219b3

Please sign in to comment.