PHP 8.2.30
Preview: streams.js Size: 743 B
/home/byroehnu/easepay.easetack.com/node_modules/brotli/dec/streams.js

function BrotliInput(buffer) {
  this.buffer = buffer;
  this.pos = 0;
}

BrotliInput.prototype.read = function(buf, i, count) {
  if (this.pos + count > this.buffer.length) {
    count = this.buffer.length - this.pos;
  }
  
  for (var p = 0; p < count; p++)
    buf[i + p] = this.buffer[this.pos + p];
  
  this.pos += count;
  return count;
}

exports.BrotliInput = BrotliInput;

function BrotliOutput(buf) {
  this.buffer = buf;
  this.pos = 0;
}

BrotliOutput.prototype.write = function(buf, count) {
  if (this.pos + count > this.buffer.length)
    throw new Error('Output buffer is not large enough');
  
  this.buffer.set(buf.subarray(0, count), this.pos);
  this.pos += count;
  return count;
};

exports.BrotliOutput = BrotliOutput;

Directory Contents

Dirs: 0 × Files: 12

Name Size Perms Modified Actions
127 B lr--r--r-- 2026-03-14 01:49:21
Edit Download
4.00 KB lrw-r--r-- 2026-02-14 19:19:12
Edit Download
11.93 KB lrw-r--r-- 2026-02-14 19:19:12
Edit Download
29.21 KB lrw-r--r-- 2026-02-14 19:19:14
Edit Download
544 B lrw-r--r-- 2026-02-14 19:19:14
Edit Download
738.65 KB lrw-r--r-- 2026-02-14 19:19:20
Edit Download
67.40 KB lrw-r--r-- 2026-02-14 19:19:22
Edit Download
1.19 KB lrw-r--r-- 2026-02-14 19:19:24
Edit Download
4.15 KB lrw-r--r-- 2026-02-14 19:19:28
Edit Download
3.25 KB lrw-r--r-- 2026-02-14 19:19:36
Edit Download
743 B lrw-r--r-- 2026-02-14 19:19:38
Edit Download
10.67 KB lrw-r--r-- 2026-02-14 19:19:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).