Update shell.js
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run

This commit is contained in:
Namhyeon Go 2024-07-10 11:32:02 +09:00 committed by GitHub
parent 4b02143a44
commit 83bc9a4b58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ var ShellObject = function() {
this.stdout = null;
this.stderr = null;
this.target = null;
this.prefix = null;
this.create = function() {
try {
@ -29,8 +29,8 @@ var ShellObject = function() {
return this;
};
this.setTarget = function(target) {
this.target = target;
this.setPrefix = function(prefix) {
this.prefix = prefix;
};
this.setCharset = function(charset) {
@ -220,7 +220,7 @@ exports.getPathOfMyDocuments = function() {
exports.CdoCharset = PipeIPC.CdoCharset;
exports.VERSIONINFO = "Shell interface (shell.js) version 0.3.8";
exports.VERSIONINFO = "Shell interface (shell.js) version 0.3.9";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;