Update shell.js

This commit is contained in:
Namhyeon Go 2022-05-04 15:47:51 +09:00 committed by GitHub
parent 98eb6bf8f6
commit 8a7b5c4a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,9 +10,9 @@ var ShellObject = function() {
this.isElevated = false;
this.isFork = false;
this.isVisibleWindow = false;
this.stdout = null;
this.stderr = null;
this.stdout = null;
this.stderr = null;
this.create = function() {
try {
@ -192,6 +192,6 @@ exports.getPathOfMyDocuments = function() {
return (new ShellObject()).getPathOfMyDocuments();
};
exports.VERSIONINFO = "Shell interface (shell.js) version 0.3";
exports.VERSIONINFO = "Shell interface (shell.js) version 0.2";
exports.global = global;
exports.require = global.require;