Trims the trailing zero bytes from an array of numbers.
The input array of numbers.
const input = [1, 2, 3, 0, 0, 0];trimArrayBytesRight(input);//=> [1, 2, 3] Copy
const input = [1, 2, 3, 0, 0, 0];trimArrayBytesRight(input);//=> [1, 2, 3]
Generated using TypeDoc
Trims the trailing zero bytes from an array of numbers.