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

async-deco

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-deco - npm Package Compare versions

Comparing version 5.0.2 to 5.0.3

2

package.json
{
"name": "async-deco",
"version": "5.0.2",
"version": "5.0.3",
"description": "A collection of decorators for adding features to asynchronous functions (callback or promise based).",

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

@@ -22,2 +22,5 @@ var defaultLogger = require('../utils/default-logger');

}
else if (cacheQuery.key === null) { // no cache
func.apply(context, args);
}
else {

@@ -24,0 +27,0 @@ logger('cache-miss', {key: cacheQuery.key});

@@ -36,2 +36,5 @@ var defaultLogger = require('../utils/default-logger');

}
else if (cacheQuery.key === null) { // no cache
cb(err, res);
}
else {

@@ -38,0 +41,0 @@ logger('fallback-cache-miss', {key: cacheQuery.key, actualResult: {err: err, res: res}});

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