Update shell.js

This commit is contained in:
Namhyeon Go 2023-09-21 18:58:28 +09:00 committed by GitHub
parent 6b55a2d0de
commit d4214f7f34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,12 +99,8 @@ var ShellObject = function() {
this.stdout.reload(this.charset);
this.stderr.reload(this.charset);
stdout = (function(s) {
return s.length > 1 ? s.substring(1) : '';
})(this.stdout.read());
stderr = (function(s) {
return s.length > 1 ? s.substring(1) : '';
})(this.stderr.read());
stdout = this.stdout.read();
stderr = this.stderr.read();
//stdout = this.stdout.read();
//stderr = this.stderr.read();
@ -210,7 +206,7 @@ exports.getPathOfMyDocuments = function() {
return (new ShellObject()).getPathOfMyDocuments();
};
exports.VERSIONINFO = "Shell interface (shell.js) version 0.3.3";
exports.VERSIONINFO = "Shell interface (shell.js) version 0.3.4";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;