Compare commits

...

4 Commits

Author SHA1 Message Date
4926f57d83 3.0.10 2023-11-06 21:59:26 +01:00
86552f2b1b fix(core): update 2023-11-06 21:59:25 +01:00
353a8ecde6 3.0.9 2023-11-06 21:03:45 +01:00
3e03b81a43 fix(core): update 2023-11-06 21:03:44 +01:00
4 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartstream",
"version": "3.0.8",
"version": "3.0.10",
"private": false,
"description": "simplifies access to node streams",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartstream',
version: '3.0.8',
version: '3.0.10',
description: 'simplifies access to node streams'
}

View File

@ -170,8 +170,8 @@ export class SmartDuplex<TInput = any, TOutput = any> extends Duplex {
callback(err);
}
} else {
this.push(null),
callback();
}
this.push(null);
}
}

View File

@ -48,6 +48,5 @@ export class StreamIntake<T> extends plugins.stream.Readable {
this.signalEndBoolean = true;
this.pushedNextDeferred.resolve();
this.pushNextObservable.signalComplete();
this.push(null);
}
}