Skip to content

Instantly share code, notes, and snippets.

@pinkhominid
Created November 19, 2020 03:49
Show Gist options
  • Save pinkhominid/172659554303b2b551f999377788efa2 to your computer and use it in GitHub Desktop.
Save pinkhominid/172659554303b2b551f999377788efa2 to your computer and use it in GitHub Desktop.
Is Element Overflown?
export function isElemOverflown({ clientWidth, scrollWidth }) { return scrollWidth > clientWidth; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment