hotdub / streaming-react-app /src /isScrolledToDocumentBottom.ts
Aman Sharma
Initial commit
a0dc69b
raw
history blame contribute delete
226 Bytes
export default function isScrolledToDocumentBottom(
bufferPx: number = 0,
): boolean {
if (
window.innerHeight + window.scrollY >=
document.body.offsetHeight - bufferPx
) {
return true;
}
return false;
}