UNPKG
ga-lite
Version:
latest (2.1.6)
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.5
2.0.4
2.0.1
2.0.0
1.1.4
1.1.3
1.1.2
1.1.1
Small, cacheable subset of Google Analytics JS client
ga-lite
/
src
/
user-opted-out.js
5 lines
(4 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
export
default
function
userOptedOut
(
trackerName
) {
// https://developers.google.com/analytics/devguides/collection/analyticsjs/user-opt-out#opt-out_of_tracking_for_your_site
return
window
[
`ga-disable-
${trackerName}
`
] ===
true
}