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

Function put_short

static/word2md/mammoth.browser.js:22536–22541  ·  view source on GitHub ↗
(s, w)

Source from the content-addressed store, hash-verified

22534 * IN assertion: there is enough room in pendingBuf.
22535 */
22536function put_short(s, w) {
22537// put_byte(s, (uch)((w) & 0xff));
22538// put_byte(s, (uch)((ush)(w) >> 8));
22539 s.pending_buf[s.pending++] = (w) & 0xff;
22540 s.pending_buf[s.pending++] = (w >>> 8) & 0xff;
22541}
22542
22543
22544/* ===========================================================================

Callers 4

send_bitsFunction · 0.70
bi_flushFunction · 0.70
bi_windupFunction · 0.70
copy_blockFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected