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

disk-memoizer

Package Overview
Dependencies
Maintainers
4
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

disk-memoizer - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

6

dist/gc.js

@@ -43,7 +43,7 @@ "use strict";

// When there are no files to gc we might get an error from find
debug("[warning] gc failed with error: %s", err.message);
debug("[warning] gc on %s failed with error: %s", cacheDir, err.message);
} else {
debug("[info] gc completed: %j", filesToDelete);
debug("[info] gc completed on %s: %j", cacheDir, filesToDelete);
}
debug("[info] next gc run in %dms", interval);
debug("[info] next gc run for %s in %dms", cacheDir, interval);
});

@@ -50,0 +50,0 @@ });

@@ -39,7 +39,10 @@ module.exports = gcTmpFiles;

// When there are no files to gc we might get an error from find
debug("[warning] gc failed with error: %s", err.message);
debug("[warning] gc on %s failed with error: %s", cacheDir,
err.message);
} else {
debug("[info] gc completed: %j", filesToDelete);
debug("[info] gc completed on %s: %j", cacheDir,
filesToDelete);
}
debug("[info] next gc run in %dms", interval);
debug("[info] next gc run for %s in %dms", cacheDir,
interval);
});

@@ -46,0 +49,0 @@ });

{
"name": "disk-memoizer",
"version": "2.0.0",
"version": "2.1.0",
"description": "Simple disk memoization and in memory LRU cache for high latency IO responses",

@@ -5,0 +5,0 @@ "main": "dist/disk_memoizer.js",

Sorry, the diff of this file is not supported yet

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