Skip to content

Instantly share code, notes, and snippets.

@gucheen
Created March 4, 2014 09:02
Show Gist options
  • Save gucheen/9342778 to your computer and use it in GitHub Desktop.
Save gucheen/9342778 to your computer and use it in GitHub Desktop.
文件大小单位转换
function readablizeBytes(bytes) {
var s = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB'];
var e = Math.floor(Math.log(bytes)/Math.log(1024));
return (bytes/Math.pow(1024, Math.floor(e))).toFixed(2)+" "+s[e];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment