Open sookie928 opened 1 year ago
It seems that attaching event listeners to the process might prevent the Garbage Collector from working as expected since they can create references to the events. Modifications may be needed for the following code
process.on('uncaughtException', function (ex) {
if (!(ex instanceof ExitStatus)) {
throw ex;
}
});
process.on('unhandledRejection', function (reason) {
throw reason;
});
Hello! I'm currently running this library in a Node.js environment. However, when I execute the ReadStepFile function as per the example provided, it works fine, but the memory used while running the function does not get collected by the garbage collector and continues to accumulate. Is there a way to resolve this issue? Below is the code I've written