true
if the ele
element is scrollable.const isScrollable = function (ele) {// Compare the height to see if the element has scrollable contentconst hasScrollableContent = ele.scrollHeight > ele.clientHeight;// It's not enough because the element's `overflow-y` style can be set as// * `hidden`// * `hidden !important`// In those cases, the scrollbar isn't shownconst overflowYStyle = window.getComputedStyle(ele).overflowY;const isOverflowHidden = overflowYStyle.indexOf('hidden') !== -1;return hasScrollableContent && !isOverflowHidden;};