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

Function BufferList

static/word2md/mammoth.browser.js:25842–25846  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25840module.exports = BufferList;
25841
25842function BufferList() {
25843 this.head = null;
25844 this.tail = null;
25845 this.length = 0;
25846}
25847
25848BufferList.prototype.push = function (v) {
25849 var entry = { data: v, next: null };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected