Update pipe-ipc.js

This commit is contained in:
Namhyeon Go 2023-09-21 16:58:30 +09:00 committed by GitHub
parent 34668ad54e
commit 2d72f6a87b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ function openTextFile(filename, iomode) {
}
function checkFileExists(filename) {
return createFSO().FileExists(filename);;
return createFSO().FileExists(filename);
}
function deleteFile(filename) {
@ -422,7 +422,6 @@ function PipeIPC() {
return text;
};
this.loadFromFile = function(filename, charset) {
this.write(this.readTextFromFile(filename, charset), ForWriting);