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

@wessberg/di

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wessberg/di - npm Package Compare versions

Comparing version 1.0.29 to 1.0.30

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## <small>1.0.30 (2018-06-21)</small>
* 1.0.30 ([47897a6](https://github.com/wessberg/di/commit/47897a6))
* Bumped version ([f45bbc1](https://github.com/wessberg/di/commit/f45bbc1))
* Fixed a bug ([dac9c90](https://github.com/wessberg/di/commit/dac9c90))
## <small>1.0.29 (2018-06-21)</small>

@@ -2,0 +10,0 @@

2

dist/es2015/di-container/di-container.js

@@ -91,3 +91,3 @@ import { CONSTRUCTOR_ARGUMENTS_IDENTIFIER } from "../constructor-arguments/constructor-arguments-identifier";

// Add the constructor arguments if there is an implementation and it has a static property representing its constructor arguments
const implementationArguments = options.implementation[CONSTRUCTOR_ARGUMENTS_IDENTIFIER];
const implementationArguments = options.implementation == null ? null : options.implementation[CONSTRUCTOR_ARGUMENTS_IDENTIFIER];
const args = implementationArguments != null ? implementationArguments : options.constructorArguments != null

@@ -94,0 +94,0 @@ ? options.constructorArguments

@@ -102,3 +102,3 @@ (function (factory) {

// Add the constructor arguments if there is an implementation and it has a static property representing its constructor arguments
const implementationArguments = options.implementation[constructor_arguments_identifier_1.CONSTRUCTOR_ARGUMENTS_IDENTIFIER];
const implementationArguments = options.implementation == null ? null : options.implementation[constructor_arguments_identifier_1.CONSTRUCTOR_ARGUMENTS_IDENTIFIER];
const args = implementationArguments != null ? implementationArguments : options.constructorArguments != null

@@ -105,0 +105,0 @@ ? options.constructorArguments

{
"name": "@wessberg/di",
"version": "1.0.29",
"version": "1.0.30",
"description": "A Dependency-Injection container that holds services and can produce instances of them as required. It mimics reflection by parsing the app at compile-time and supporting the generic-reflection syntax.",

@@ -5,0 +5,0 @@ "scripts": {

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