浏览代码

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;
+    }
+
+};