1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

rjs -> webpack

This commit is contained in:
Keivan Beigi
2015-02-02 17:18:45 -08:00
parent 344f3d66ef
commit 428a1439e5
399 changed files with 11591 additions and 16139 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
'use strict';
String.prototype.format = function () {
String.prototype.format = function(){
var args = arguments;
return this.replace(/{(\d+)}/g, function (match, number) {
if (typeof args[number] !== 'undefined') {
return this.replace(/{(\d+)}/g, function(match, number){
if(typeof args[number] !== 'undefined') {
return args[number];
}
else {
return match;
}
});
};
};