Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Created July 29, 2016 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHub30/0014ad130e85ead17f2455c4a8430eee to your computer and use it in GitHub Desktop.
Save GitHub30/0014ad130e85ead17f2455c4a8430eee to your computer and use it in GitHub Desktop.
readable_size.js
function readable_size(size){
var units = ['B', 'KB', 'MB', 'GB', 'TB'];
var i = Math.floor(Math.log(size)/Math.log(1024));
return Math.floor(size/Math.pow(1024, i)) + units[i];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment