MCPcopy
hub / github.com/jagenjo/webglstudio.js / putShortMSB

Function putShortMSB

editor/js/extra/jszip.js:6748–6753  ·  view source on GitHub ↗
(s, b)

Source from the content-addressed store, hash-verified

6746 * pending_buf.
6747 */
6748function putShortMSB(s, b) {
6749// put_byte(s, (Byte)(b >> 8));
6750// put_byte(s, (Byte)(b & 0xff));
6751 s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
6752 s.pending_buf[s.pending++] = b & 0xff;
6753}
6754
6755
6756/* ===========================================================================

Callers 1

deflateFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected