| 29 | } |
| 30 | |
| 31 | interface tabOptions { |
| 32 | shift?: boolean |
| 33 | focusTrap?: Document | Element |
| 34 | } |
| 35 | |
| 36 | function tab({shift = false, focusTrap}: tabOptions = {}) { |
| 37 | const doc = focusTrap?.ownerDocument ?? document |
nothing calls this directly
no outgoing calls
no test coverage detected