@sap-ux/ui-components
Version:
SAP UI Components Library
19 lines • 535 B
JavaScript
/**
* Method checks if passed Element is HTML Element.
*
* @param element Element.
* @returns True if passed Element is HTML Element.
*/
export function isHTMLElement(element) {
return 'title' in element;
}
/**
* Method checks if passed Element is HTML Input Element.
*
* @param element Element.
* @returns True if passed Element is HTML Input Element.
*/
export function isHTMLInputElement(element) {
return 'value' in element && 'tagName' in element && element.tagName === 'INPUT';
}
//# sourceMappingURL=Dom.js.map