MCPcopy Create free account
hub / github.com/TruthHun/BookStack / Queue

Function Queue

static/word2md/mammoth.browser.js:8125–8129  ·  view source on GitHub ↗
(capacity)

Source from the content-addressed store, hash-verified

8123}
8124
8125function Queue(capacity) {
8126 this._capacity = capacity;
8127 this._length = 0;
8128 this._front = 0;
8129}
8130
8131Queue.prototype._willBeOverCapacity = function (size) {
8132 return this._capacity < size;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected