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

Function StringReader

static/word2md/mammoth.browser.js:13552–13559  ·  view source on GitHub ↗
(data, optimizedBinaryString)

Source from the content-addressed store, hash-verified

13550var utils = require('./utils');
13551
13552function StringReader(data, optimizedBinaryString) {
13553 this.data = data;
13554 if (!optimizedBinaryString) {
13555 this.data = utils.string2binary(this.data);
13556 }
13557 this.length = this.data.length;
13558 this.index = 0;
13559}
13560StringReader.prototype = new DataReader();
13561/**
13562 * @see DataReader.byteAt

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected