cl01/wp-content/plugins/code-snippets/js/utils/general.ts
2025-02-24 12:39:24 +08:00

9 lines
249 B
TypeScript
Executable File

export const isNetworkAdmin = (): boolean =>
window.pagenow.endsWith('-network')
export const isMacOS = (): boolean =>
null !== /mac/i.exec(window.navigator.userAgent)
export const isLicensed = (): boolean =>
!!window.CODE_SNIPPETS?.isLicensed