Your IP : 216.73.216.215


Current Path : /home/flapst5/ekmtoronto.com/wp-content/plugins/code-snippets/js/utils/
Upload File :
Current File : /home/flapst5/ekmtoronto.com/wp-content/plugins/code-snippets/js/utils/screen.ts

// `pagenow` is only defined inside wp-admin. This module is also reached from
// the admin bar bundle, which loads on the front end, so read it defensively.
export const isNetworkAdmin = (): boolean =>
	true === window.pagenow?.endsWith('-network')

export const isMacOS = (): boolean =>
	null !== /mac/i.exec(window.navigator.userAgent)

export const isLicensed = (): boolean =>
	!!window.CODE_SNIPPETS?.isLicensed

export const shouldShowUpsell = () =>
	!isLicensed() && !window.CODE_SNIPPETS?.hideUpsell