Browse Source

Suppr tri alphabetique

Arthur Brandao 5 năm trước cách đây
mục cha
commit
acab1c808c
1 tập tin đã thay đổi với 0 bổ sung6 xóa
  1. 0 6
      src/finder/finder.js

+ 0 - 6
src/finder/finder.js

@@ -51,18 +51,12 @@ const finder = class Finder {
                 }
             });
         });
-        // Tri par ordre alphabetique
-        coauth.sort(instance._alphabeticalSort);
         // Retour
         if (instance.callback !== null) {
             instance.callback(coauth);
         }
     }
 
-    _alphabeticalSort(a, b) {
-        return (a > b) ? 1 : -1;
-    }
-
 };
 
 module.exports.get = function () {