fix(core): update

This commit is contained in:
Philipp Kunz 2023-11-06 21:59:25 +01:00
parent 353a8ecde6
commit 86552f2b1b
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartstream',
version: '3.0.9',
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);
}
}