Skip to content

Instantly share code, notes, and snippets.

@ryanwitt
Created November 8, 2010 17:32
Show Gist options
  • Save ryanwitt/667975 to your computer and use it in GitHub Desktop.
Save ryanwitt/667975 to your computer and use it in GitHub Desktop.
si_prefix.js
function si_prefix(size) {
var suffixes =['', 'k', 'M', 'G', 'T', 'P', 'E'];
if (size === 0) return '0';
base = Math.log(size) / Math.log(1000);
return suffixes[Math.floor(base)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment