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

mkdir-recursive

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mkdir-recursive - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

5

History.md

@@ -0,1 +1,6 @@

v0.0.2 / 2015-02-26
==================
* Fix absolute path
v0.0.1 / 2015-02-25

@@ -2,0 +7,0 @@ ==================

6

index.js

@@ -45,3 +45,4 @@ 'use strict';

if (path.isAbsolute(root) === true) {
chunk = '/'; // build from absolute path
chunks.shift(); // remove "/"
chunk = path.sep; // build from absolute path
} else {

@@ -73,3 +74,4 @@ chunk = path.resolve(); // build with relative path

if (path.isAbsolute(root) === true) {
chunk = '/'; // build from absolute path
chunks.shift(); // remove "/"
chunk = path.sep; // build from absolute path
} else {

@@ -76,0 +78,0 @@ chunk = path.resolve(); // build with relative path

{
"version": "0.0.1",
"version": "0.0.2",
"name": "mkdir-recursive",

@@ -34,3 +34,3 @@ "description": "make/remove (synchronous) directories recursively",

"engines": {
"node": ">=0.10"
"node": ">=0.12"
},

@@ -40,5 +40,5 @@ "scripts": {

"test": "mocha --bail --check-leaks",
"test-cov": "cd test;istanbul cover ../node_modules/mocha/bin/_mocha --report lcovonly -- *.js"
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"license": "GPLv3"
}
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