@guillotinaweb/react-gmi 0.32.2 → 0.32.3
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/CHANGELOG.md +377 -0
- package/dist/react-gmi.js +2 -2
- package/dist/react-gmi.js.map +1 -1
- package/dist/react-gmi.modern.js +2 -2
- package/dist/react-gmi.modern.js.map +1 -1
- package/dist/react-gmi.umd.js +2 -2
- package/dist/react-gmi.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/react-gmi.umd.js
CHANGED
|
@@ -14521,7 +14521,7 @@
|
|
|
14521
14521
|
_proto.willExpire = function willExpire(expiration) {
|
|
14522
14522
|
var now = new Date().getTime();
|
|
14523
14523
|
|
|
14524
|
-
if (parseInt(expiration)
|
|
14524
|
+
if (parseInt(expiration) < now + 10) {
|
|
14525
14525
|
return true;
|
|
14526
14526
|
}
|
|
14527
14527
|
|
|
@@ -14531,7 +14531,7 @@
|
|
|
14531
14531
|
_proto.isExpired = function isExpired(expiration) {
|
|
14532
14532
|
var now = new Date().getTime();
|
|
14533
14533
|
|
|
14534
|
-
if (parseInt(expiration)
|
|
14534
|
+
if (parseInt(expiration) > now) {
|
|
14535
14535
|
return false;
|
|
14536
14536
|
}
|
|
14537
14537
|
|