spaxel/dashboard/node_modules/union/examples/simple/middleware/gzip-decode.js
jedarden 03f765639b feat(feedback): enhance false positive explanations with diagnostic context
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-25 12:35:04 -04:00

26 lines
No EOL
725 B
JavaScript

var spawn = require('child_process').spawn,
util = require('util'),
RequestStream = require('../../lib').RequestStream;
var GzipDecode = module.exports = function GzipDecoder(options) {
RequestStream.call(this, options);
this.on('pipe', this.decode);
}
util.inherits(GzipDecode, RequestStream);
GzipDecode.prototype.decode = function (source) {
this.decoder = spawn('gunzip');
this.decoder.stdout.on('data', this._onGunzipData.bind(this));
this.decoder.stdout.on('end', this._onGunzipEnd.bind(this));
source.pipe(this.decoder);
}
GzipDecoderStack.prototype._onGunzipData = function (chunk) {
this.emit('data', chunk);
}
GzipDecoderStack.prototype._onGunzipEnd = function () {
this.emit('end');
}