// '{0}{1}'.lp_format('asdf', 1 + 2);
if (!String.prototype.format) {
String.prototype.lp_format = function() {
var args = arguments;
return this.replace(/{(\d+)}/g, function(match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};
}