UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

16 lines (13 loc) 404 B
import getExplicitRole from '../aria/get-explicit-role'; /** * Determines if an element is an aria combobox element * @method isAriaCombobox * @memberof axe.commons.forms * @param {VirtualNode|Element} node Node to determine if aria combobox * @returns {Bool} */ function isAriaCombobox(node) { const role = getExplicitRole(node); return role === 'combobox'; } export default isAriaCombobox;