UNPKG

@splitsoftware/splitio-commons

Version:
7 lines (6 loc) 266 B
import { CONSENT_GRANTED } from '../utils/constants'; export function isConsentGranted(settings) { var userConsent = settings.userConsent; // undefined userConsent is handled as granted (default) return !userConsent || userConsent === CONSENT_GRANTED; }