// SYSTEM PANEL //
[ROOT]
/
home
/
csender
/
.trash
/
node_modules.9
/
shelljs
/
src
[ PARENT ]
EDIT :: pwd.js
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;
SAVE
CANCEL