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

@equinor/fusion-framework-module-msal

Package Overview
Dependencies
Maintainers
3
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/fusion-framework-module-msal - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## 0.1.8 (2022-03-25)
### Bug Fixes
* **modules-msal:** change regex group selector ([ebaa118](https://github.com/equinor/fusion-framework/commit/ebaa11849303e68f67544f8db57727673f821744))
## [0.1.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-msal@0.1.6...@equinor/fusion-framework-module-msal@0.1.7) (2022-02-23)

@@ -8,0 +19,0 @@

2

dist/esm/client/util/url.js
export const normalizeUri = (uri, home = window.location.origin) => {
uri = uri.match(/^http[s]?/) ? uri : home + uri;
const { origin, pathname } = new URL(uri);
return origin + pathname.replace(/((?<=[/])[/]+)|\/$/, '');
return origin + pathname.replace(/([^:]\/)\/+/g, '$1');
};

@@ -6,0 +6,0 @@ export const compareOrigin = (a, b) => {

{
"name": "@equinor/fusion-framework-module-msal",
"version": "0.1.7",
"version": "0.1.8",
"description": "",

@@ -36,3 +36,3 @@ "main": "./dist/esm/index.js",

},
"gitHead": "cbb102f5162153624948cce8c45a5e608ce2feba"
"gitHead": "02dea3f67a55fb9536ecb2d5826c51edfee231a9"
}

@@ -13,3 +13,3 @@ /**

const { origin, pathname } = new URL(uri);
return origin + pathname.replace(/((?<=[/])[/]+)|\/$/, '');
return origin + pathname.replace(/([^:]\/)\/+/g, '$1');
};

@@ -16,0 +16,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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