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

@myndzi/app-framework

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@myndzi/app-framework - npm Package Compare versions

Comparing version 1.4.3 to 1.4.4

12

lib/shutdown.js

@@ -28,8 +28,2 @@ 'use strict';

function makePromise(arg) {
if (typeof arg.then === 'function') {
return arg;
}
if (typeof arg === 'function') {
return Promise.promisify(arg)();
}
if (typeof stream.once === 'function') {

@@ -42,2 +36,8 @@ return new Promise(function (resolve, reject) {

}
if (typeof arg.then === 'function') {
return arg;
}
if (typeof arg === 'function') {
return Promise.promisify(arg)();
}
if (arg instanceof Error) {

@@ -44,0 +44,0 @@ return Promise.reject(arg);

{
"name": "@myndzi/app-framework",
"version": "1.4.3",
"version": "1.4.4",
"description": "Config and logging framework for Node.js applications",

@@ -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