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
/
localStorage.js
13 lines
(11 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
lsTest
(
) {
const
test =
'test'
;
try
{
localStorage
.
setItem
(test, test);
localStorage
.
removeItem
(test);
return
true
; }
catch
(e) {
return
false
; } }
export
const
isLocalStorageAvailable =
lsTest
();