UNPKG

@kpi4me/golden-layout

Version:

A multi-screen javascript Layout manager https://golden-layout.com

17 lines (13 loc) 364 B
module.exports = ByteCounter; var Writable = require('readable-stream').Writable; var util = require('util'); util.inherits(ByteCounter, Writable); function ByteCounter(options) { Writable.call(this, options); this.bytes = 0; } ByteCounter.prototype._write = function(chunk, encoding, cb) { this.bytes += chunk.length; this.emit('progress'); cb(); };