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

Function putShortMSB

static/word2md/mammoth.browser.js:18405–18410  ·  view source on GitHub ↗
(s, b)

Source from the content-addressed store, hash-verified

18403 * pending_buf.
18404 */
18405function putShortMSB(s, b) {
18406// put_byte(s, (Byte)(b >> 8));
18407// put_byte(s, (Byte)(b & 0xff));
18408 s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
18409 s.pending_buf[s.pending++] = b & 0xff;
18410}
18411
18412
18413/* ===========================================================================

Callers 1

deflateFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected