mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
4 lines
178 B
JavaScript
4 lines
178 B
JavaScript
export function prettyByte(byte) {
|
|
return "".concat(byte < 0 ? "-" : "", "0x").concat(Math.abs(byte).toString(16).padStart(2, "0"));
|
|
}
|
|
//# sourceMappingURL=prettyByte.mjs.map
|