Skip to content

Instantly share code, notes, and snippets.

@mcrisc
Created March 22, 2010 23:34
Show Gist options
  • Save mcrisc/340671 to your computer and use it in GitHub Desktop.
Save mcrisc/340671 to your computer and use it in GitHub Desktop.
String.prototype.padRight = function(length) {
var padding = "";
for (i = 0; i < length - this.length; i++) {
padding += " ";
}
return this + padding;
}
String.prototype.trim = function() {
return this.replace(/^\s*/, "").replace(/\s*$/, "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment