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

mkdirp

Package Overview
Dependencies
Maintainers
0
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mkdirp - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

test/race.js

6

index.js

@@ -12,6 +12,8 @@ var path = require('path');

else mkdirP(ps.slice(0,-1).join('/'), mode, function (err) {
if (err && err.errno != process.EEXIST) cb(err)
else fs.mkdir(p, mode, cb);
if (err && err.code !== 'EEXIST') cb(err)
else fs.mkdir(p, mode, function (err) {
if (err && err.code !== 'EEXIST') cb(err);
});
});
});
};
{
"name" : "mkdirp",
"description" : "Recursively mkdir, like `mkdir -p`",
"version" : "0.0.3",
"version" : "0.0.4",
"author" : "James Halliday <mail@substack.net> (http://substack.net)",

@@ -6,0 +6,0 @@ "main" : "./index",

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