()
| 150 | * @returns {NodeListOf<HTMLElement>} |
| 151 | */ |
| 152 | const getSelected = (): NodeListOf<HTMLElement> => { |
| 153 | return document.querySelectorAll<HTMLElement>('.selected'); |
| 154 | }; |
| 155 | |
| 156 | const arrowRightHandler = (e: KeyboardEvent, hideHiddenFiles: boolean): void => { |
| 157 | if (latestShiftSelected && elementIndex(latestShiftSelected) < elementIndex(latestSelected)) { |
no outgoing calls
no test coverage detected