Skip to content

Instantly share code, notes, and snippets.

@NickyYo
Created April 30, 2018 10:46
Show Gist options
  • Save NickyYo/b8393f4deafd37bb3597bd539f1e63d4 to your computer and use it in GitHub Desktop.
Save NickyYo/b8393f4deafd37bb3597bd539f1e63d4 to your computer and use it in GitHub Desktop.
Converts bytes to KB, MB, GB, TB
bytesToSize(bytes: any) {
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes == 0) return '0 Byte';
var i = Math.floor(Math.log(bytes) / Math.log(1024));
return Math.round(bytes / Math.pow(1024, i)) + ' ' + sizes[i];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment