- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
47 lines
677 B
JavaScript
47 lines
677 B
JavaScript
'use strict';
|
|
const {Transform} = require('stream');
|
|
|
|
class ObjectTransform extends Transform {
|
|
constructor() {
|
|
super({
|
|
objectMode: true
|
|
});
|
|
}
|
|
}
|
|
|
|
class FilterStream extends ObjectTransform {
|
|
constructor(filter) {
|
|
super();
|
|
this._filter = filter;
|
|
}
|
|
|
|
_transform(data, encoding, callback) {
|
|
if (this._filter(data)) {
|
|
this.push(data);
|
|
}
|
|
|
|
callback();
|
|
}
|
|
}
|
|
|
|
class UniqueStream extends ObjectTransform {
|
|
constructor() {
|
|
super();
|
|
this._pushed = new Set();
|
|
}
|
|
|
|
_transform(data, encoding, callback) {
|
|
if (!this._pushed.has(data)) {
|
|
this.push(data);
|
|
this._pushed.add(data);
|
|
}
|
|
|
|
callback();
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
FilterStream,
|
|
UniqueStream
|
|
};
|