lint compliance

This commit is contained in:
ansuz
2020-02-27 13:40:48 -05:00
parent d2bae175c4
commit 0989595358
2 changed files with 3 additions and 3 deletions

View File

@@ -2788,8 +2788,8 @@ define([
keys.sort(function(a, b) {
var _a = props[a];
var _b = props[b];
if (a < b) { return mult * -1; }
if (b > a) { return mult; }
if (_a < _b) { return mult * -1; }
if (_b > _a) { return mult; }
return 0;
});
return keys;