MCPcopy Create free account
hub / github.com/reactjs/react-modal / isTabKey

Function isTabKey

src/components/ModalPortal.js:25–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 * `react-modal` only supports React >18 (which dropped IE support).
24 */
25const isTabKey = event => event.code === "Tab" || event.keyCode === 9;
26const isEscKey = event => event.code === "Escape" || event.keyCode === 27;
27
28let ariaHiddenInstances = 0;

Callers 1

ModalPortalClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected