(request)
| 321 | return selectTab("first", request); |
| 322 | }, |
| 323 | lastTab(request) { |
| 324 | return selectTab("last", request); |
| 325 | }, |
| 326 | async removeTab({ count, tab }) { |
| 327 | await forCountTabs(count, tab, (tab) => { |
| 328 | // In Firefox, Ctrl-W will not close a pinned tab, but on Chrome, it will. We try to be |
nothing calls this directly
no test coverage detected