helpers/unit_utils.js (
3
lines of code) (
raw
):
export const bytesToKiloBytes = (bytes) => { return `${Math.round(bytes / 1024)} KiB`; };