pwd.js 241 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 var path = require('path'); var common = require('./common'); //@ //@ ### pwd() //@ Returns the current directory. function _pwd(options) { var pwd = path.resolve(process.cwd()); return common.ShellString(pwd); } module.exports = _pwd;