Created
January 14, 2011 20:04
-
-
Save panquetofobia/780143 to your computer and use it in GitHub Desktop.
A simple rpad funciton
This file contains 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 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