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

mkdir-p

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mkdir-p - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

index.js

@@ -15,3 +15,3 @@ var fs = require('fs');

var args = arguments,
_path;
_path = '';
if (list.length > 0) {

@@ -33,3 +33,3 @@ _path = list.shift();

} else {
callback && callback(null);
callback && callback(null, _path);
}

@@ -36,0 +36,0 @@ })();

@@ -19,3 +19,3 @@ {

},
"version": "0.0.2",
"version": "0.0.3",
"readmeFilename": "README.md",

@@ -22,0 +22,0 @@ "bugs": {

@@ -18,9 +18,3 @@ # mkdir-p

mkdir.sync('/a/b/c/d', function(err){
if(err){
console.log(err);
} else {
console.log(ok);
}
});
mkdir.sync('/a/b/c/d');
```

@@ -33,3 +27,9 @@

mkdir('/a/b/c/d')
mkdir('/a/b/c/d', function(err){
if(err){
console.log(err);
} else {
console.log(ok);
}
})
```
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