(keyCode: number)
| 125 | * bring the cell Input into focus. |
| 126 | */ |
| 127 | export function isNavKey(keyCode: number) { |
| 128 | return NAVIGATION_KEYS.indexOf(keyCode) !== -1; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Checks if passed key code can lead to table cell naviagation. |
no test coverage detected
searching dependent graphs…