Home Manual Reference Source

src/big32.js

/**
 * Construct a 32-bit signed integer from 4 bytes.
 */
export function big32(a, o) {
	return (a[o + 0] << 24) | (a[o + 1] << 16) | (a[o + 2] << 8) | a[o + 3];
}