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