9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import getMeta from '@/utils/meta'
|
|
|
|
export function isIEEEBranded() {
|
|
const brandVariation = getMeta('ol-brandVariation')
|
|
const { ieeeBrandId } = getMeta('ol-ExposedSettings')
|
|
|
|
return brandVariation?.brand_id === ieeeBrandId
|
|
}
|