mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 21:20:07 +02:00
add node modules to repo
This commit is contained in:
27
node_modules/mkpath/README.md
generated
vendored
Normal file
27
node_modules/mkpath/README.md
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# mkpath
|
||||
|
||||
Make all directories in a path, like `mkdir -p`.
|
||||
|
||||
## How to use
|
||||
|
||||
var mkpath = require('mkpath');
|
||||
|
||||
mkpath('red/green/violet', function (err) {
|
||||
if (err) throw err;
|
||||
console.log('Directory structure red/green/violet created');
|
||||
});
|
||||
|
||||
mkpath.sync('/tmp/blue/orange', 0700);
|
||||
|
||||
### mkpath(path, [mode = 0777 & (~process.umask()),] [callback])
|
||||
|
||||
Create all directories that don't exist in `path` with permissions `mode`. When finished, `callback(err)` fires with the error, if any.
|
||||
|
||||
### mkpath.sync(path, [mode = 0777 & (~process.umask())]);
|
||||
|
||||
Synchronous version of the same. Throws error, if any.
|
||||
|
||||
## License
|
||||
|
||||
This software is released under the [MIT license](http://www.opensource.org/licenses/MIT).
|
||||
|
Reference in New Issue
Block a user