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

@evosphere/legato

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evosphere/legato - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

2

package.json
{
"name": "@evosphere/legato",
"version": "0.0.6",
"version": "0.0.7",
"description": "Service management system",

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

@@ -13,10 +13,5 @@ /**

* Represent a Bundle
* @param params
* @constructor
*/
export default function Bundle(params : { name: string, getDefinitions: () => ServiceMap }) {
this.name = params.name;
this.getDefinitions = params.getDefinitions.bind(this);
this.afterSetup = typeof params.afterSetup === "function" ? params.afterSetup.bind(this) : undefined;
}
export default function Bundle() {}

@@ -44,3 +39,3 @@ /**

return new Bundle(params);
return Object.assign({}, new Bundle(), params);
};
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