UNPKG

nexshop-web-contents

Version:

Nexshop Web Contents Project

17 lines (12 loc) 320 B
export function convertBytesToKilobytes(bytes) { if (!bytes || bytes < 0) { return '0B' } const fileUnits = ['B', 'KB', 'MB', 'GB']; let unitIndex = 0; while(bytes >= 1024) { bytes = (bytes / 1024).toFixed(1); unitIndex++; } return bytes + fileUnits[unitIndex]; }