mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-27 12:52:59 +08:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
![]() |
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;
|