export function isTabbable()

in src/utils/iterate-focusable-elements.ts [119:121]


export function isTabbable(elem: HTMLElement, strict = false): boolean {
  return isFocusable(elem, strict) && elem.getAttribute('tabindex') !== '-1'
}