mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 23:36:44 -06:00
6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
|
export function hexifyAB(buffer) {
|
||
|
return Array.from(new Uint8Array(buffer))
|
||
|
.map(item => item.toString(16).padStart(2, 0))
|
||
|
.join('');
|
||
|
}
|