()
| 324 | } |
| 325 | |
| 326 | export function isApplicable(): boolean { |
| 327 | // Safari (desktop and mobile) and all Android browsers keep content blockers in both regular and private mode |
| 328 | return isWebKit() || isAndroid() |
| 329 | } |
| 330 | |
| 331 | export async function getBlockedSelectors<T extends string>(selectors: readonly T[]): Promise<{ [K in T]?: true }> { |
| 332 | const d = document |
no test coverage detected
searching dependent graphs…