Fix eslint no-plusplus in es5 files

[MAILPOET-1145]
This commit is contained in:
Pavel Dohnal
2018-02-19 16:08:29 +00:00
parent e10901d939
commit de91c90ac2
5 changed files with 8 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ define('handlebars_helpers', ['handlebars'], function (Handlebars) {
var size = (arguments.length - 1);
var output = '';
var i;
for (i = 0; i < size; i++) {
for (i = 0; i < size; i += 1) {
output += arguments[i];
}
return output;