UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

5 lines (4 loc) 296 B
export const HAS_WINDOW_SUPPORT = typeof window !== 'undefined' export const HAS_DOCUMENT_SUPPORT = typeof document !== 'undefined' export const HAS_NAVIGATOR_SUPPORT = typeof navigator !== 'undefined' export const IS_BROWSER = HAS_WINDOW_SUPPORT && HAS_DOCUMENT_SUPPORT && HAS_NAVIGATOR_SUPPORT