* Converts the Int64 to its bytes representation * @this {!Int64} * @param {boolean=} le Whether little or big endian, defaults to little endian * @returns {!Array. } Bytes representation
(le = true)
| 218 | * @returns {!Array.<number>} Bytes representation |
| 219 | */ |
| 220 | toBytes (le = true) { |
| 221 | return le ? this.toBytesLE() : this.toBytesBE() |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Converts the Int64 to its bytes representation (big endian) |