Ver Fonte

Création class pour gerer format du retour de finder

Arthur Brandao há 5 anos atrás
pai
commit
0d4f10c868
1 ficheiros alterados com 7 adições e 0 exclusões
  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;
+    }
+
+};