File size: 844 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | const STS_US_REGIONS = [
'california', // CA
'florida', // FL
'maryland', // MD
'massachusetts', // MA
'new hampshire', // NH
'nevada', // NV
'pennsylvania', // PA
'washington', // WA
];
/**
* Returns a boolean telling whether a region is in an STS (session tracking sensitive) zone.
* @param countryCode The country code to check (it needs to be 'US' for STS to apply)
* @param region The region to look for.
* @returns Whether the region is in the STS zone
*/
export default function isRegionInStsZone(
countryCode: string | undefined,
region: string | undefined
): boolean {
if ( 'US' !== countryCode ) {
return false;
}
if ( 'unknown' === region || undefined === region ) {
// If we don't know the region, assume it's not in an STS zone.
return true;
}
return STS_US_REGIONS.includes( region.toLowerCase() );
}
|