UNPKG

igir

Version:

🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.

19 lines (18 loc) • 401 B
import stream from "node:stream"; class CompressedTransform extends stream.Transform { size = 0; /** * Increment the size and passthrough the data. */ _transform(chunk, _encoding, callback) { this.size += chunk.length; callback(null, chunk); } getSize() { return this.size; } } export { CompressedTransform as default }; //# sourceMappingURL=compressedTransform.js.map