New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fluffy-spoon/angular.authentication.jwt

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluffy-spoon/angular.authentication.jwt - npm Package Compare versions

Comparing version 1.0.65 to 1.0.66

10

dist/FluffySpoonAuthenticationModule.js

@@ -16,10 +16,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

export function getTokenContainer() {
if (tokenContainer)
return tokenContainer;
return tokenContainer = new TokenContainer();
return tokenContainer ? tokenContainer : (tokenContainer = new TokenContainer());
}
export function getAuthenticationService(http, tokenContainer, tokenUrl) {
if (authenticationService)
return authenticationService;
return authenticationService = new AuthenticationService(http, tokenContainer, tokenUrl);
return authenticationService ?
authenticationService :
(authenticationService = new AuthenticationService(http, tokenContainer, tokenUrl));
}

@@ -26,0 +24,0 @@ var FluffySpoonAuthenticationModule = /** @class */ (function () {

2

package.json
{
"name": "@fluffy-spoon/angular.authentication.jwt",
"version": "1.0.65",
"version": "1.0.66",
"description": "",

@@ -5,0 +5,0 @@ "main": "./dist/Index.js",

@@ -15,12 +15,12 @@ import { NgModule, FactoryProvider, ClassProvider, Injector, ModuleWithProviders, InjectionToken } from '@angular/core';

export function getTokenContainer() {
if (tokenContainer) return tokenContainer;
return tokenContainer = new TokenContainer();
return tokenContainer ? tokenContainer : (tokenContainer = new TokenContainer());
}
export function getAuthenticationService(http: HttpClient, tokenContainer: TokenContainer, tokenUrl: string) {
if (authenticationService) return authenticationService;
return authenticationService = new AuthenticationService(
http,
tokenContainer,
tokenUrl);
return authenticationService ?
authenticationService :
(authenticationService = new AuthenticationService(
http,
tokenContainer,
tokenUrl));
}

@@ -27,0 +27,0 @@

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