File size: 490 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import cookie from 'cookie';
import type { AdTracker } from '../tracker-buckets';
const getExceptions = (): Partial< Record< AdTracker, boolean > > => {
const cookies = cookie.parse( document.cookie );
const region = ( cookies.region || '' ).toLowerCase();
const countryCode = ( cookies.country_code || '' ).toLowerCase();
if ( ! region || ! countryCode ) {
return {};
}
return {
facebook: region === 'california' && countryCode === 'us',
};
};
export default getExceptions;
|