Skip to content
On this page

Home > @taiyuuki/utils > int_to_bytes

int_to_bytes() function

该函数使用按位运算将整数转换为 4 字节的数组并返回该数组。

Signature:

typescript
declare function int_to_bytes(num: number): Uint8Array;
declare function int_to_bytes(num: number): Uint8Array;

Parameters

ParameterTypeDescription
numnumber参数 num 是需要转换为字节数组的数字。

Returns:

Uint8Array

函数“int_to_bytes”返回一个“Uint8Array”,其中包含以小端字节顺序排列的输入数字的四个字节。

Example

ts
int_to_bytes(0x12345678) // [0x78, 0x56, 0x34, 0x12]
int_to_bytes(0x12345678) // [0x78, 0x56, 0x34, 0x12]

Released under the MIT License.