Skip to content

Instantly share code, notes, and snippets.

@yufan-liu
Created September 13, 2016 06:45
Show Gist options
  • Save yufan-liu/bc1191f569a4f18bda2888c706f11770 to your computer and use it in GitHub Desktop.
Save yufan-liu/bc1191f569a4f18bda2888c706f11770 to your computer and use it in GitHub Desktop.
function humanFileSize(size) {
var i = Math.floor( Math.log(size) / Math.log(1024) );
return ( size / Math.pow(1024, i) ).toFixed(2) * 1 + ' ' + ['B', 'kB', 'MB', 'GB', 'TB'][i];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment