ohctechv3/.svn/pristine/69/69f2414244a0b296aec99b20c1ffe3f2537fb01a.svn-base
2024-10-28 15:03:36 +05:30

8 lines
194 B
Plaintext

/**
* Checks if a given element matches a selector.
*
* @param node the element
* @param selector the selector
*/
export default function matches(node: Element, selector: string): boolean;