@osimatic/helpers-js 1.1.47 → 1.1.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jwt.js +0 -4
- package/package.json +1 -1
package/jwt.js
CHANGED
|
@@ -136,10 +136,6 @@ class JwtSession {
|
|
|
136
136
|
return JwtToken.getData(JwtSession.getToken(), key);
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
static setData(key, value) {
|
|
140
|
-
localStorage.setItem(key, value);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
139
|
static isAnonymous() {
|
|
144
140
|
return localStorage.getItem('access_token') == null;
|
|
145
141
|
}
|