mirror of
https://codeberg.org/yeentown/barkey
synced 2024-12-04 06:17:25 +00: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('');
|
||
|
}
|