Files
botpress--botpress/integrations/teams/src/markdown/turndown-rules/common.ts
T
2026-07-13 13:34:48 +08:00

7 lines
201 B
TypeScript

export const isElementOfType = <K extends keyof HTMLElementTagNameMap>(
el: Element,
tagName: K
): el is HTMLElementTagNameMap[K] => {
return el.tagName.toLowerCase() === tagName.toLowerCase()
}