Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

authentication-adal-pkg

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

authentication-adal-pkg - npm Package Compare versions

Comparing version 1.0.30 to 1.0.31

18

lib/index.js

@@ -140,3 +140,17 @@ 'use strict';

};
var signoutServer = function signoutServer() {
var xhr = new XMLHttpRequest();
setPlatformRedirectUri(getPlatform());
var url =
'https://login.windows.net/' +
tenant +
'/oauth2/logout?post_logout_redirect_uri=' +
platformRedirectUri;
xhr.open('GET', url, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
}
};
xhr.send();
};
var signOutMobile = function signOutMobile() {

@@ -149,2 +163,4 @@ return new Promise(function(resolve, reject) {

authContext.tokenCache.clear();
signoutServer();
resolve();

@@ -151,0 +167,0 @@ } catch (err) {

2

package.json
{
"name": "authentication-adal-pkg",
"version": "1.0.30",
"version": "1.0.31",
"description": "An authentication SDK based on MS ADAL ",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc