UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

20 lines (16 loc) 618 B
import implicitRoles from './implicitRoles'; /** * Returns an element's implicit role given its attributes and type. * Some elements only have an implicit role when certain props are defined. * * @param type - The node's tagName. * @param attributes - The collection of attributes on the node. * @returns {String} - String representing the node's implicit role or '' if it doesn't exist. */ export default function getImplicitRole(type, attributes) { const normalizedType = type.toUpperCase(); if (implicitRoles[normalizedType]) { return implicitRoles[normalizedType](attributes); } return ''; }