@putout/bundle 4.7.5 → 4.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bundle/putout.js CHANGED
@@ -41744,8 +41744,6 @@ function DeclareExportDeclaration2(node) {
41744
41744
  this.word('default');
41745
41745
  this.space();
41746
41746
  }
41747
-
41748
- FlowExportDeclaration.call(this, node);
41749
41747
  }
41750
41748
 
41751
41749
  function DeclareExportAllDeclaration2(node) {
@@ -41848,35 +41846,6 @@ function EnumStringMember2(node) {
41848
41846
  enumInitializedMember(this, node);
41849
41847
  }
41850
41848
 
41851
- function FlowExportDeclaration(node) {
41852
- if (node.declaration) {
41853
- const declar = node.declaration;
41854
- this.print(declar);
41855
-
41856
- if (!isStatement$12(declar))
41857
- this.semicolon();
41858
- } else {
41859
- this.tokenChar(123);
41860
-
41861
- if (node.specifiers.length) {
41862
- this.space();
41863
- this.printList(node.specifiers);
41864
- this.space();
41865
- }
41866
-
41867
- this.tokenChar(125);
41868
-
41869
- if (node.source) {
41870
- this.space();
41871
- this.word('from');
41872
- this.space();
41873
- this.print(node.source);
41874
- }
41875
-
41876
- this.semicolon();
41877
- }
41878
- }
41879
-
41880
41849
  function ExistsTypeAnnotation2() {
41881
41850
  this.tokenChar(42);
41882
41851
  }