arithmetic-type/uint32

View on GitHub
src/big32.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * 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];
}