(v: any)
| 11 | typeof browser.webRequest?.filterResponseData === 'function'; |
| 12 | |
| 13 | export const isValidArray = <T = any>(v: any): v is T[] => |
| 14 | Array.isArray(v) && v.length > 0; |
| 15 | |
| 16 | // Get Active Tab |
| 17 | export async function getActiveTab() { |
no outgoing calls
no test coverage detected