soapbox/src/features/compose/editor/utils/is-html-element.ts

5 wiersze
139 B
TypeScript

const isHTMLElement = (x: unknown): x is HTMLElement => x instanceof HTMLElement;
export default isHTMLElement;
export { isHTMLElement };