blob: 3bc310dafad20438965bdc646529dfbf14330251 [file] [log] [blame]
var path = require('path');
var common = require('./common');
//@
//@ ### pwd()
//@ Returns the current directory.
function _pwd() {
var pwd = path.resolve(process.cwd());
return new common.ShellString(pwd, '', common.state.errorCode);
}
module.exports = _pwd;