Converts a 32-bit integer to a 4-byte little-endian byte array.
The 32-bit integer to convert.
A 4-byte array in little-endian order.
int32ToLittleEndianBytes(0x12345678) // Returns [0x78, 0x56, 0x34, 0x12] Copy
int32ToLittleEndianBytes(0x12345678) // Returns [0x78, 0x56, 0x34, 0x12]
Converts a 32-bit integer to a 4-byte little-endian byte array.