UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com's products.

19 lines 354 B
const handleKeyDown = (onAction, action) => ev => { if (ev.code === "Enter") { if (onAction) { onAction(ev); } if (action) { action(ev); } } else if (ev.code === "Space") { ev.preventDefault(); if (onAction) { onAction(ev); } if (action) { action(ev); } } }; export default handleKeyDown;