Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LFDT-Nightstream/Starstream
/ uint8ArrayToHexString
Function
uint8ArrayToHexString
starstream-js/src/index.ts:225–229 ·
view source on GitHub ↗
(uint8Array: Uint8Array)
Source
from the content-addressed store, hash-verified
223
// Private utilities
224
225
function
uint8ArrayToHexString(uint8Array: Uint8Array): string {
226
return
Array.prototype.map
227
.call(uint8Array, (byte) => (
"0"
+ byte.toString(16)).slice(-2))
228
.join(
""
);
229
}
Callers
1
getId
Method · 0.85
Calls
2
join
Method · 0.80
call
Method · 0.45
Tested by
no test coverage detected