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

@tinkoff/dippy

Package Overview
Dependencies
Maintainers
17
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tinkoff/dippy - npm Package Compare versions

Comparing version 0.10.2 to 0.10.3

12

lib/Container.es.js

@@ -256,4 +256,12 @@ import { Errors, Scope } from './constant.es.js';

this.recordValues.set(record, CIRCULAR);
// мульти провайдеры не могут быть optional
value = record.multi.map((rec) => this.hydrate(rec, token, false));
try {
// мульти провайдеры не могут быть optional
value = record.multi.map((rec) => this.hydrate(rec, token, false));
}
catch (e) {
// reset circular mark for broken multi provider,
// otherwise it will be cached and in subsequent calls we will get circular dependency error
this.recordValues.set(record, NOT_YET);
throw e;
}
}

@@ -260,0 +268,0 @@ else {

@@ -260,4 +260,12 @@ 'use strict';

this.recordValues.set(record, CIRCULAR);
// мульти провайдеры не могут быть optional
value = record.multi.map((rec) => this.hydrate(rec, token, false));
try {
// мульти провайдеры не могут быть optional
value = record.multi.map((rec) => this.hydrate(rec, token, false));
}
catch (e) {
// reset circular mark for broken multi provider,
// otherwise it will be cached and in subsequent calls we will get circular dependency error
this.recordValues.set(record, NOT_YET);
throw e;
}
}

@@ -264,0 +272,0 @@ else {

2

package.json
{
"name": "@tinkoff/dippy",
"version": "0.10.2",
"version": "0.10.3",
"initialVersion": "0.7.27",

@@ -5,0 +5,0 @@ "description": "",

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