@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
9 lines (7 loc) • 312 B
text/typescript
import { ISettings } from '../types';
import { CONSENT_GRANTED } from '../utils/constants';
export function isConsentGranted(settings: ISettings) {
const userConsent = settings.userConsent;
// undefined userConsent is handled as granted (default)
return !userConsent || userConsent === CONSENT_GRANTED;
}