Trims the left side of an array of bytes by removing leading zeros.
The array of bytes to trim.
const input = [0, 0, 0, 1, 2, 3];trimArrayBytesLeft(input);//=> [1, 2, 3] Copy
const input = [0, 0, 0, 1, 2, 3];trimArrayBytesLeft(input);//=> [1, 2, 3]
Generated using TypeDoc
Trims the left side of an array of bytes by removing leading zeros.