Skip to content

Commit 7a7f713

Browse files
committed
Fix test
1 parent 9667c59 commit 7a7f713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/analyzer/selectors/identifiers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = selectors => {
1616
.reduce((prev, curr) => prev + curr, 0)
1717
const average = totalIdentifiers / totalSelectors
1818

19-
const top = (count) => {
19+
const top = count => {
2020
const sorter = (a, b) => {
2121
if (a.identifiers === b.identifiers) {
2222
return a.selector.localeCompare(b.selector)

0 commit comments

Comments
 (0)