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

5 lines
139 B
TypeScript
Raw Normal View History

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