Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

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