node_modules: upgrade

This commit is contained in:
Dawid Dziurla
2022-10-21 16:52:45 +02:00
parent 6063705cef
commit f27e7f6b8d
140 changed files with 6117 additions and 261 deletions

View File

@ -54,10 +54,10 @@ class DKIMSigner {
this.output = output;
this.output.usingCache = false;
this.errored = false;
this.hasErrored = false;
this.input.on('error', err => {
this.errored = true;
this.hasErrored = true;
this.cleanup();
output.emit('error', err);
});
@ -84,7 +84,7 @@ class DKIMSigner {
}
sendNextChunk() {
if (this.errored) {
if (this.hasErrored) {
return;
}
@ -145,7 +145,7 @@ class DKIMSigner {
// do nothing
}
});
this.errored = true;
this.hasErrored = true;
// emit error
this.output.emit('error', err);
});