@keystatic/core

Search for an npm package
function bytesToHex(bytes) {
let str = '';
for (const byte of bytes) {
str += byte.toString(16).padStart(2, '0');
}
return str;
}
export { bytesToHex as b };