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

tmp

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tmp - npm Package Compare versions

Comparing version 0.0.18 to 0.0.20

test-all.sh

9

lib/tmp.js

@@ -256,7 +256,12 @@ /*!

process.addListener('uncaughtException', function _uncaughtExceptionThrown() {
process.addListener('uncaughtException', function _uncaughtExceptionThrown( err ) {
_uncaughtException = true;
_garbageCollector();
throw err;
});
process.addListener('exit', _garbageCollector);
process.addListener('exit', function _exit() {
_garbageCollector();
});

@@ -263,0 +268,0 @@ // exporting all the needed methods

{
"name": "tmp",
"version": "0.0.18",
"version": "0.0.20",
"description": "Temporary file and directory creator",

@@ -5,0 +5,0 @@ "author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",

@@ -17,3 +17,4 @@ var

filename,
command = [ 'node', path.join(__dirname, testFile) ].concat(params).join(' ');
node_path = process.argv[0],
command = [ node_path, path.join(__dirname, testFile) ].concat(params).join(' ');

@@ -20,0 +21,0 @@ exec(command, function _execDone(err, stdout, stderr) {

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