Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Mar 1, 2023
1 parent 8f67a54 commit abc0800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clover/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const fromString = (str: string): Stats => {
},
allFiles
.map((f) => {
f._attributes.name = f._attributes.path || f._attributes.name
f._attributes.name = f._attributes.path || f._attributes.name;
return f;
})
.sort((a, b) => (a._attributes.name < b._attributes.name ? -1 : 1))
Expand Down

0 comments on commit abc0800

Please sign in to comment.