client/general: fix jscs warnings

This commit is contained in:
rr-
2016-06-12 22:10:20 +02:00
parent 0547ec5aa2
commit 3cbcbf1140
10 changed files with 45 additions and 43 deletions

View File

@ -183,7 +183,7 @@ function unindent(callSite, ...args) {
if (size < 0) {
size = m1.replace(/\t/g, ' ').length;
}
return "\n" + m1.slice(Math.min(m1.length, size));
return '\n' + m1.slice(Math.min(m1.length, size));
});
}
if (typeof callSite === 'string') {