Преглед изворни кода

Création class pour gerer format du retour de finder

Arthur Brandao пре 5 година
родитељ
комит
0d4f10c868
1 измењених фајлова са 7 додато и 0 уклоњено
  1. 7 0
      src/finder/formatter.js

+ 7 - 0
src/finder/formatter.js

@@ -0,0 +1,7 @@
+const formatter = class Formatter {
+
+    _alphabeticalSort(a, b) {
+        return (a > b) ? 1 : -1;
+    }
+
+};