1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Remove console.log statement

This commit is contained in:
Andrew Kingston 2020-10-13 09:47:12 +01:00
parent fa59b05d74
commit 652e3b43ed

View file

@ -24,8 +24,7 @@
}
function getPagesAroundCurrent(current, max) {
console.log(current)
const start = Math.max(current - 2, 1)
giat const start = Math.max(current - 2, 1)
const end = Math.min(current + 2, max - 2)
let pages = []
for (let i = start; i <= end; i++) {