(selector: string)
| 8 | } |
| 9 | |
| 10 | export function scrollToElement(selector: string) { |
| 11 | const element = document.querySelector(selector) |
| 12 | if (element) { |
| 13 | element.scrollIntoView({ block: 'center' }) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | export function getContiguousSelection( |
| 18 | orderedIds: number[], |
no outgoing calls
no test coverage detected