function populate(event) {
while(true) {
// нижняя граница документа
let windowRelativeBottom = document.documentElement.getBoundingClientRect().bottom
// если пользователь прокрутил достаточно далеко (< 100px до конца)
if (windowRelativeBottom < document.documentElement.clientHeight + 100) {
event.preventDefault()
}
}
}
window.addEventListener('scroll', function(e) {
populate(e)
})