Commit dist files
This commit is contained in:
16
node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
16
node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
var path = require('path');
|
||||
var common = require('./common');
|
||||
|
||||
common.register('pwd', _pwd, {
|
||||
allowGlobbing: false,
|
||||
});
|
||||
|
||||
//@
|
||||
//@ ### pwd()
|
||||
//@
|
||||
//@ Returns the current directory.
|
||||
function _pwd() {
|
||||
var pwd = path.resolve(process.cwd());
|
||||
return pwd;
|
||||
}
|
||||
module.exports = _pwd;
|
||||
Reference in New Issue
Block a user