* Queries the provided `root` element for sub elements by the selector and casts the result as an * array of elements
(root: HTMLElement, selector: string)
| 4017 | * array of elements |
| 4018 | */ |
| 4019 | function queryAll(root: HTMLElement, selector: string): HTMLElement[] { |
| 4020 | return Array.from(root.querySelectorAll(selector)); |
| 4021 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…