authentication-adal-pkg
Advanced tools
Comparing version 1.0.14 to 1.0.15
@@ -293,3 +293,3 @@ 'use strict'; | ||
var token = authResult.idToken; | ||
var exp = new Date(authResult.expiresOn); | ||
var exp = new Date(authResult.expiresOn).getTime(); | ||
storage.set(constants.IN_PROGRESS, false); | ||
@@ -319,3 +319,3 @@ storage.set(constants.TOKEN, token); | ||
var token = authResult.idToken; | ||
var exp = new Date(authResult.expiresOn); | ||
var exp = new Date(authResult.expiresOn).getTime(); | ||
storage.set(constants.IN_PROGRESS, false); | ||
@@ -322,0 +322,0 @@ storage.set(constants.TOKEN, token); |
{ | ||
"name": "authentication-adal-pkg", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "An authentication SDK based on MS ADAL ", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
66059