elementIsFocused Checks if the given element is focused. Use Document.activeElement to determine if the given element is focused. const elementIsFocused = el => (el === document.activeElement); elementIsFocused(el); // true if the element is focused