forked from enviPath/enviPy
Current Dev State
This commit is contained in:
15
static/js/ketcher2/node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
15
static/js/ketcher2/node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
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