PHP 8.2.30
Preview: sync-reader.js Size: 1.09 KB
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/pngjs/lib/sync-reader.js

"use strict";

let SyncReader = (module.exports = function (buffer) {
  this._buffer = buffer;
  this._reads = [];
});

SyncReader.prototype.read = function (length, callback) {
  this._reads.push({
    length: Math.abs(length), // if length < 0 then at most this length
    allowLess: length < 0,
    func: callback,
  });
};

SyncReader.prototype.process = function () {
  // as long as there is any data and read requests
  while (this._reads.length > 0 && this._buffer.length) {
    let read = this._reads[0];

    if (
      this._buffer.length &&
      (this._buffer.length >= read.length || read.allowLess)
    ) {
      // ok there is any data so that we can satisfy this request
      this._reads.shift(); // == read

      let buf = this._buffer;

      this._buffer = buf.slice(read.length);

      read.func.call(this, buf.slice(0, read.length));
    } else {
      break;
    }
  }

  if (this._reads.length > 0) {
    return new Error("There are some read requests waitng on finished stream");
  }

  if (this._buffer.length > 0) {
    return new Error("unrecognised content at end of stream");
  }
};

Directory Contents

Dirs: 0 × Files: 22

Name Size Perms Modified Actions
6.33 KB lrw-r--r-- 2026-02-27 09:45:00
Edit Download
4.56 KB lrw-r--r-- 2026-02-27 09:45:00
Edit Download
4.15 KB lrw-r--r-- 2026-02-27 09:45:02
Edit Download
662 B lrw-r--r-- 2026-02-27 09:45:02
Edit Download
853 B lrw-r--r-- 2026-02-27 09:45:02
Edit Download
4.18 KB lrw-r--r-- 2026-02-27 09:45:02
Edit Download
558 B lrw-r--r-- 2026-02-27 09:45:02
Edit Download
483 B lrw-r--r-- 2026-02-27 09:45:04
Edit Download
4.69 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
2.27 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
1.96 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
1.13 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
1.17 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
3.64 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
372 B lrw-r--r-- 2026-02-27 09:45:04
Edit Download
4.22 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
2.48 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
7.54 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
252 B lrw-r--r-- 2026-02-27 09:45:04
Edit Download
4.31 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
3.66 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download
1.09 KB lrw-r--r-- 2026-02-27 09:45:04
Edit Download

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