Skip to content

Instantly share code, notes, and snippets.

@bgadrian
Created March 16, 2015 17:17
Show Gist options
  • Save bgadrian/16606b7ca41a077b2174 to your computer and use it in GitHub Desktop.
Save bgadrian/16606b7ca41a077b2174 to your computer and use it in GitHub Desktop.
JS php like bytes to human size kb mb gb
function bytesToSize(bytes) {
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes == 0) return 'n/a';
var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment