CliSite/commands/pwd.js

11 lines
275 B
JavaScript
Raw Normal View History

2022-06-12 09:38:38 +02:00
"use strict";
exports.__esModule = true;
exports.pwd = void 0;
function pwd(curdirx) {
var buf = "";
var curdirasstring = curdirx.join("/");
buf += "Current directory: " + curdirasstring + "\n";
return buf;
}
exports.pwd = pwd;
//# sourceMappingURL=pwd.js.map