Files
memecoin-botV2/.pnpm-store/v10/files/a4/6d3bdab12a8a034316b5c83da2872dc708a04a45f1968b5a744d0254b3dd7c8c87da85b1987c458c5cec92cff7bcdd5fa62e4677c749fc0af7163cc98342a1

42 lines
1.1 KiB
Plaintext

'use strict';
const {Transform} = require('stream');
const defaultInitial = 0;
const defaultReducer = (acc, value) => value;
class Scan extends Transform {
constructor(options) {
super(Object.assign({}, options, {writableObjectMode: true, readableObjectMode: true}));
this._accumulator = defaultInitial;
this._reducer = defaultReducer;
if (options) {
'initial' in options && (this._accumulator = options.initial);
'reducer' in options && (this._reducer = options.reducer);
}
}
_transform(chunk, encoding, callback) {
const result = this._reducer.call(this, this._accumulator, chunk);
if (result && typeof result.then == 'function') {
result.then(
value => {
this._accumulator = value;
this.push(this._accumulator);
callback(null);
},
error => callback(error)
);
} else {
this._accumulator = result;
this.push(this._accumulator);
callback(null);
}
}
static make(reducer, initial) {
return new Scan(typeof reducer == 'object' ? reducer : {reducer, initial});
}
}
Scan.make.Constructor = Scan;
module.exports = Scan.make;