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

mesh-ioc

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

mesh-ioc - npm Package Compare versions

Comparing version 3.3.0 to 3.3.1

9

out/main/dep.js

@@ -40,4 +40,11 @@ import 'reflect-metadata';

export function getClassDeps(ctor) {
return depMetadata.filter(_ => _.class === ctor);
const result = [];
let proto = ctor;
while (proto !== Object.prototype) {
const deps = depMetadata.filter(_ => _.class === proto);
result.push(...deps);
proto = Object.getPrototypeOf(proto);
}
return result;
}
//# sourceMappingURL=dep.js.map

2

package.json
{
"name": "mesh-ioc",
"version": "3.3.0",
"version": "3.3.1",
"description": "Powerful and Lightweight IoC Library",

@@ -5,0 +5,0 @@ "type": "module",

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