summaryrefslogtreecommitdiff
path: root/source/helpers/feature-utils.ts
blob: 684987a59f2473765749bbf15ffe3af504fa7d47 (plain) (blame)
1
2
3
4
5
6
7
import {isMobileSafari} from 'webext-detect-page';

export function isFeaturePrivate(id: string): boolean {
	return id.startsWith('rgh-');
}

export const doesBrowserActionOpenOptions = isMobileSafari();