(doc: Document)
| 94 | } |
| 95 | |
| 96 | function getModalContainers(doc: Document): Set<HTMLElement> { |
| 97 | return new Set(Array.from(doc.querySelectorAll<HTMLElement>(EXPORT_MODAL_SELECTOR))); |
| 98 | } |
| 99 | |
| 100 | function summarizeEmbed(embedEl: HTMLElement): Record<string, unknown> { |
| 101 | const titleEl = embedEl.querySelector(".file-embed-title"); |
no outgoing calls
no test coverage detected