@nextcloud/vue
Version:
Nextcloud vue components
13 lines (12 loc) • 322 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const isA11yActivation = (event) => {
if (event.type === "click") {
return true;
}
if (event.type === "keydown" && event.key === "Enter") {
return true;
}
return false;
};
exports.isA11yActivation = isA11yActivation;