Created
December 9, 2011 05:51
-
-
Save neopunisher/1450377 to your computer and use it in GitHub Desktop.
Pretty Bytes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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