mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
8 lines
293 B
JavaScript
8 lines
293 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.prettyByte = void 0;
|
|
function prettyByte(byte) {
|
|
return `${byte < 0 ? "-" : ""}0x${Math.abs(byte).toString(16).padStart(2, "0")}`;
|
|
}
|
|
exports.prettyByte = prettyByte;
|
|
//# sourceMappingURL=prettyByte.js.map
|