wallet-core/node_modules/shelljs/src/pwd.js
2017-05-24 15:11:17 +02:00

16 lines
274 B
JavaScript

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;