UNPKG

google-analytics-ga4

Version:

This is package for google analytics GA4 .You can import it to any node project and use it .React , Vue, Anguler etc

13 lines (12 loc) 352 B
const gtag = (...args) => { if (typeof window !== "undefined") { if (typeof window?.gtag === "undefined") { window.dataLayer = window.dataLayer || []; window.gtag = function gtag() { window.dataLayer.push(arguments); }; } window.gtag(...args); } }; export default gtag;