https://project.mdnd-it.cc/work_packages/94
This commit is contained in:
2025-08-23 04:25:28 +02:00
parent 725516ad6c
commit 19cfa031d0
25823 changed files with 1095587 additions and 2801760 deletions
+43
View File
@@ -0,0 +1,43 @@
'use strict';
const {Transform} = require('stream');
const defaultInitial = 0;
const defaultReducer = (acc, value) => value;
class Fold 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;
callback(null);
},
error => callback(error)
);
} else {
this._accumulator = result;
callback(null);
}
}
_final(callback) {
this.push(this._accumulator);
callback(null);
}
static make(reducer, initial) {
return new Fold(typeof reducer == 'object' ? reducer : {reducer, initial});
}
}
Fold.make.Constructor = Fold;
module.exports = Fold.make;