Heray-Was-Here
Server : Apache
System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
Directory :  /bitnami/wordpress/wp-content/plugins/code-snippets/js/utils/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /bitnami/wordpress/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

Hry