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('');
|
||
|
}
|