Spaces:
Paused
Paused
File size: 226 Bytes
c1efb72 |
1 2 3 4 5 6 7 8 9 10 11 12 |
export default function isScrolledToDocumentBottom(
bufferPx: number = 0,
): boolean {
if (
window.innerHeight + window.scrollY >=
document.body.offsetHeight - bufferPx
) {
return true;
}
return false;
}
|