Explorar el Código

Création class pour gerer format du retour de finder

Arthur Brandao hace 5 años
padre
commit
0d4f10c868
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  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;
+    }
+
+};