lint compliance

This commit is contained in:
yflory 2018-02-08 12:24:19 +01:00
parent c210f097c0
commit b5bb83b700
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@ define(req, function(Util, Default, Language) {
checkInObject(Default, translation, []);
// Push the removals at the end
missing.sort(function (a, b) {
if (a[2] === 0 && b[2] !== 0) return 1;
if (a[2] !== 0 && b[2] === 0) return -1;
if (a[2] === 0 && b[2] !== 0) { return 1; }
if (a[2] !== 0 && b[2] === 0) { return -1; }
return 0;
});
Array.prototype.push.apply(allMissing, missing); // Destructive concat