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.9 to 0.0.10

2

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

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

@@ -56,7 +56,9 @@ // @flow

function resolveDependency(id : string) : mixed {
let param;
if (id[0] === "%") {
return parameters[id.substr(1)] || null;
param = parameters[id.substr(1)];
} else {
return services[id] || null;
param = services[id];
}
return param !== undefined ? param : null;
}

@@ -63,0 +65,0 @@

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