Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mchambaud
Created September 27, 2013 19:30
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 mchambaud/6733985 to your computer and use it in GitHub Desktop.
Save mchambaud/6733985 to your computer and use it in GitHub Desktop.
if (!String.prototype.format) {
String.prototype.format = function() {
var args = arguments;
return this.replace(/{(\d+)}/g, function(match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment