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

Function PassThrough

static/word2md/mammoth.browser.js:24142–24146  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

24140util.inherits(PassThrough, Transform);
24141
24142function PassThrough(options) {
24143 if (!(this instanceof PassThrough)) return new PassThrough(options);
24144
24145 Transform.call(this, options);
24146}
24147
24148PassThrough.prototype._transform = function (chunk, encoding, cb) {
24149 cb(null, chunk);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected