bug fix #126
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-31 00:43:42 +09:00
parent 6297f9689d
commit 9ae992dc89

View File

@ -54,8 +54,9 @@ var ShellObject = function() {
};
this.build = function(cmd) {
var prefix = this.prefix;
var wrap = function(s) {
return this.prefix != null ? [this.prefix, s].join(' ') : s;
return prefix != null ? [prefix, s].join(' ') : s;
};
if (typeof(cmd) === "string") {
@ -221,7 +222,7 @@ exports.getPathOfMyDocuments = function() {
exports.CdoCharset = PipeIPC.CdoCharset;
exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.12";
exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.13";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;