Andrey Titovskiy před 3 roky
rodič
revize
d02b8b5912
3 změnil soubory, kde provedl 6 přidání a 4 odebrání
  1. 1 1
      build/index.js
  2. 1 1
      build/index.js.map
  3. 4 2
      src/index.js

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 1 - 1
build/index.js


Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 1 - 1
build/index.js.map


+ 4 - 2
src/index.js

@@ -318,7 +318,7 @@ const handler = {
   }
 };
 
-export const brandingObject = {
+const brandingObject = {
   'unicraft': Unicraft,
   'einstein': Einstein,
   'oktopolygraphist': Octopolygraphist,
@@ -634,4 +634,6 @@ export const brandingObject = {
   'vashden': Vashden,
 }
 
-export const brandingMapping = new Proxy(brandingObject, handler);
+const brandingMapping = new Proxy(brandingObject, handler);
+
+export default { brandingMapping, brandingObject }