chore: use pop() instead of [0]

This commit is contained in:
Cory Dransfeldt 2023-07-05 14:46:00 -07:00
parent c1900315a3
commit 0fa3fd28ed
No known key found for this signature in database

View file

@ -21,7 +21,7 @@ module.exports = {
if (analytics.find((p) => p.page === post.url)) return true
})
.sort((a, b) => {
const visitors = (page) => analytics.filter((p) => p.page === page.url)[0].visitors
const visitors = (page) => analytics.filter((p) => p.page === page.url).pop().visitors
return visitors(b) - visitors(a)
})
},