Update pipe-ipc.js

This commit is contained in:
Namhyeon Go 2022-09-29 03:41:21 +09:00 committed by GitHub
parent 9c77c4479a
commit b21ba01f5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,11 @@ exports.create = function() {
return new PipeIPC();
};
exports.VERSIONINFO = "PIPE-based IPC Module (pipe-ipc.js) version 0.1.2";
exports.AUTHOR = "Nathan Catswords <catswords@protonmail.com>";
exports.ForReading = ForReading;
exports.ForWriting = ForWriting;
exports.ForAppending = ForAppending;
exports.VERSIONINFO = "PIPE-based IPC Module (pipe-ipc.js) version 0.1.3";
exports.AUTHOR = "catswords@protonmail.com";
exports.global = global;
exports.require = require;