stream.js 453 B

1234567891011121314151617181920
  1. // since stream in nodejs don't really work the way I would want them too
  2. module.exports = class FakeStream {
  3. constructor (buf = Buffer.from([])) {
  4. this.buffer = buf
  5. this._bytesRead = 0
  6. }
  7. read (size) {
  8. const data = this.buffer.slice(0, size)
  9. this.buffer = this.buffer.slice(size)
  10. this._bytesRead += size
  11. return data
  12. }
  13. write (buf) {
  14. buf = Buffer.from(buf)
  15. this.buffer = Buffer.concat([this.buffer, buf])
  16. }
  17. }