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

power-di

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

power-di - npm Package Compare versions

Comparing version 2.4.12 to 2.4.13

4

History.md

@@ -0,1 +1,5 @@

# 2.4.13 / 2021-08-18
- update: symbol
# 2.4.12 / 2021-08-18

@@ -2,0 +6,0 @@

@@ -354,3 +354,8 @@ "use strict";

IocContext.prototype.canBeKey = function (obj) {
return ['function', 'string', 'symbol'].includes(typeof obj);
var type = typeof obj;
// ie11 symbol is object
if (type === 'object') {
return obj.toString() !== '[object Object]';
}
return ['function', 'string', 'symbol'].includes(type);
};

@@ -357,0 +362,0 @@ IocContext.prototype.genValueFactory = function (data, options) {

2

package.json
{
"name": "power-di",
"version": "2.4.12",
"version": "2.4.13",
"description": "A lightweight Dependency Injection library. Using es6 and other features, remove unnecessary concepts, easy and convenient to use.",

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

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