Skip to content

Instantly share code, notes, and snippets.

@panquetofobia
Created January 14, 2011 20:04
Show Gist options
  • Save panquetofobia/780143 to your computer and use it in GitHub Desktop.
Save panquetofobia/780143 to your computer and use it in GitHub Desktop.
A simple rpad funciton
function rpad(txt, n, c) {
// padding length
n = n || 15;
// character to fill the string
c = c || ' ';
for (var p = 0, diff = n - txt.length; diff && p < diff; txt += c, p++);
return txt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment