nexxtway/react-rainbow

View on GitHub
src/components/PhoneInput/countriesDropdown/helpers/isScrollPositionAtScrollable.js

Summary

Maintainability
A
30 mins
Test Coverage
export default function isScrollPositionAtScrollable(scrollable) {
    const { scrollHeight, scrollTop, clientHeight } = scrollable;
    return scrollHeight - scrollTop === clientHeight;
}