UNPKG

@splitsoftware/splitio-commons

Version:
9 lines (7 loc) 312 B
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; }