From 8a7b5c4a9600b3e1ebffc871765c0e2afce8a80e Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 4 May 2022 15:47:51 +0900 Subject: [PATCH] Update shell.js --- lib/shell.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/shell.js b/lib/shell.js index 5343ec8..6ff3027 100644 --- a/lib/shell.js +++ b/lib/shell.js @@ -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;