Socket
Socket
Sign inDemoInstall

@furystack/inject

Package Overview
Dependencies
Maintainers
1
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@furystack/inject - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

dist/Injector.js

@@ -16,3 +16,5 @@ "use strict";

const singletons = Array.from(this.cachedSingletons.entries()).map((e) => e[1]);
const disposeRequests = singletons.map(async (s) => {
const disposeRequests = singletons
.filter((s) => s !== this)
.map(async (s) => {
if (s.dispose) {

@@ -19,0 +21,0 @@ await s.dispose();

{
"name": "@furystack/inject",
"version": "1.0.2",
"version": "1.0.3",
"description": "Core FuryStack package",

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

@@ -8,3 +8,5 @@ import { IDisposable } from "@sensenet/client-utils";

const singletons = Array.from(this.cachedSingletons.entries()).map((e) => e[1]);
const disposeRequests = singletons.map(async (s) => {
const disposeRequests = singletons
.filter((s) => s !== this)
.map(async (s) => {
if (s.dispose) {

@@ -11,0 +13,0 @@ await s.dispose();

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