lint compliance

pull/1/head
ansuz 2018-02-08 11:11:51 +01:00
parent f8399eaaa6
commit 1191c14a29
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