瀏覽代碼

Suppr tri alphabetique

Arthur Brandao 5 年之前
父節點
當前提交
acab1c808c
共有 1 個文件被更改,包括 0 次插入6 次删除
  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 () {