a()

in src/util/is-interactive.js [10:14]


    a(props) {
        const hasHref = typeof props.href === 'string';
        const hasTabIndex = props.tabIndex !== null;
        return (hasHref || (!hasHref && hasTabIndex));
    }