fix(core): update

This commit is contained in:
2023-11-03 21:36:10 +01:00
parent 8a3c653213
commit 1c0e5f264d
6 changed files with 20 additions and 36 deletions

View File

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

View File

@ -94,14 +94,3 @@ export class StreamWrapper {
return done.promise;
}
}
export let cleanPipe = () => {
return plugins.through2.obj(
(file, enc, cb) => {
cb();
},
(cb) => {
cb();
}
);
};

View File

@ -9,8 +9,3 @@ import * as smartrx from '@push.rocks/smartrx';
export { smartpromise, smartrx };
// thirdparty
import from2 from 'from2';
import through2 from 'through2';
export { from2, through2 };