UNPKG
owtlab-tracking
Version:
latest (1.0.0-rc.3)
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
A simple Tracking system
github.com/roykesserwani/owtlab-tracking
roykesserwani/owtlab-tracking
owtlab-tracking
/
lib
/
utils
/
optOut.js
13 lines
(9 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ isLocalStorageAvailable }
from
'./localStorage'
;
export
function
setOptOut
(
optOut =
true
) {
if
(!isLocalStorageAvailable)
return
;
if
(optOut) {
localStorage
.
setItem
(
'optout'
, optOut);
return
; }
localStorage
.
removeItem
(
'optout'
); }