UNPKG

@oxyhq/services

Version:

OxyHQ Expo/React Native SDK — UI components, screens, and native features

5 lines (4 loc) 241 B
// Utility to detect if running in a frontend (browser or React Native) environment const isFrontend = typeof window !== 'undefined' || (typeof navigator !== 'undefined' && navigator.product === 'ReactNative'); export default isFrontend;