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

machine

Package Overview
Dependencies
Maintainers
5
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

machine - npm Package Compare versions

Comparing version 7.1.0 to 8.0.0

13

lib/intercept-exit-callbacks.js

@@ -83,5 +83,12 @@ /**

catch (e){
// Ignore the error for now, it mayeb should forward to the
// catchall error exit eventually (...although probably not-
// this case should never happen)
// Ignore the error unless it's `E_UNKNOWN_TYPE`.
if (e.code === 'E_UNKNOWN_TYPE') {
// Avoid recursive loops
if (exitName === 'error') {
value = new Error('Could not infer type from `error` exit example-- proceeing as if the example was undefined, and passing back this error as the output value.');
}
else {
return memo.error(new Error('Could not infer type from `'+exitName+'` exit example-- proceeding as if the example was undefined, and passing back this error as the output value.'));
}
}
}

@@ -88,0 +95,0 @@ }

{
"name": "machine",
"version": "7.1.0",
"version": "8.0.0",
"description": "Configure and execute machines",

@@ -5,0 +5,0 @@ "main": "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