mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05:00
16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
|
|
(function (window) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
function hasConsentFor (cookieCategory) {
|
||
|
|
const consentCookie = window.GOVUK.getConsentCookie();
|
||
|
|
|
||
|
|
if (consentCookie === null) { return false; }
|
||
|
|
|
||
|
|
if (!(cookieCategory in consentCookie)) { return false; }
|
||
|
|
|
||
|
|
return consentCookie[cookieCategory];
|
||
|
|
}
|
||
|
|
|
||
|
|
window.GOVUK.hasConsentFor = hasConsentFor;
|
||
|
|
})(window);
|