UNPKG

@shopana/ga

Version:

Type-safe Google Analytics 4 (GA4) tracking library for React and Next.js with ecommerce support, event batching, and SSR compatibility

14 lines 323 B
import {} from '../types/common'; export function canTrack(state) { if (state.disabled) { return false; } if (state.status === 'destroyed') { return false; } if (typeof window === 'undefined') { return false; } return state.isReady; } //# sourceMappingURL=canTrack.js.map