UNPKG

@automattic/calypso-products

Version:

This module contains information about the various products sold within calypso, such as product slugs, plan intervals, etc.

12 lines 442 B
import { isEnabled } from '@automattic/calypso-config'; export function isGlobalStylesOnPersonalEnabled() { if (typeof window === 'undefined') { return false; } if (window.isGlobalStylesOnPersonal) { return true; } window.isGlobalStylesOnPersonal = isEnabled('global-styles/on-personal-plan'); return !!window.isGlobalStylesOnPersonal; } //# sourceMappingURL=is-global-styles-on-personal-enabled.js.map