Improve and fix examples for padBytesRight
parent
0eef1d972a
commit
0fd2550190
|
@ -104,11 +104,17 @@ var Utils = {
|
||||||
* @returns {byteArray}
|
* @returns {byteArray}
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* // returns "['a', 0, 0, 0]"
|
* // returns ["a", 0, 0, 0]
|
||||||
* Utils.padBytesRight("a", 4);
|
* Utils.padBytesRight("a", 4);
|
||||||
*
|
*
|
||||||
* // returns "['a', 1, 1, 1]"
|
* // returns ["a", 1, 1, 1]
|
||||||
* Utils.padBytesRight("a", 4, 1);
|
* Utils.padBytesRight("a", 4, 1);
|
||||||
|
*
|
||||||
|
* // returns ["t", "e", "s", "t", 0, 0, 0, 0]
|
||||||
|
* Utils.padBytesRight("test", 8);
|
||||||
|
*
|
||||||
|
* // returns ["t", "e", "s", "t", 1, 1, 1, 1]
|
||||||
|
* Utils.padBytesRight("test", 8, 1);
|
||||||
*/
|
*/
|
||||||
padBytesRight: function(arr, numBytes, padByte) {
|
padBytesRight: function(arr, numBytes, padByte) {
|
||||||
padByte = padByte || 0;
|
padByte = padByte || 0;
|
||||||
|
|
Loading…
Reference in New Issue