Skip to content

Instantly share code, notes, and snippets.

@neopunisher
Created December 9, 2011 05:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neopunisher/1450377 to your computer and use it in GitHub Desktop.
Save neopunisher/1450377 to your computer and use it in GitHub Desktop.
Pretty Bytes
function bSze(a){if(a==0)return"n/a";var b=parseInt(Math.floor(Math.log(a)/Math.log(1024)));return Math.round(a/Math.pow(1024,b),2)+" "+["Bytes","KB","MB","GB","TB"][[b]]};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment