@putout/bundle 3.18.3 → 3.18.4

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
@@ -58227,10 +58227,19 @@ var __setModuleDefault = Object.create ? (function(o, v) {
58227
58227
  o["default"] = v;
58228
58228
  };
58229
58229
 
58230
+ var ownKeys = function(o) {
58231
+ ownKeys = Object.getOwnPropertyNames || function (o) {
58232
+ var ar = [];
58233
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
58234
+ return ar;
58235
+ };
58236
+ return ownKeys(o);
58237
+ };
58238
+
58230
58239
  function __importStar(mod) {
58231
58240
  if (mod && mod.__esModule) return mod;
58232
58241
  var result = {};
58233
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
58242
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
58234
58243
  __setModuleDefault(result, mod);
58235
58244
  return result;
58236
58245
  }
@@ -94516,7 +94525,8 @@ function requireEslintVisitorKeys () {
94516
94525
  ],
94517
94526
  ExportAllDeclaration: [
94518
94527
  "exported",
94519
- "source"
94528
+ "source",
94529
+ "attributes"
94520
94530
  ],
94521
94531
  ExportDefaultDeclaration: [
94522
94532
  "declaration"
@@ -94524,7 +94534,8 @@ function requireEslintVisitorKeys () {
94524
94534
  ExportNamedDeclaration: [
94525
94535
  "declaration",
94526
94536
  "specifiers",
94527
- "source"
94537
+ "source",
94538
+ "attributes"
94528
94539
  ],
94529
94540
  ExportSpecifier: [
94530
94541
  "exported",
@@ -94565,15 +94576,21 @@ function requireEslintVisitorKeys () {
94565
94576
  "consequent",
94566
94577
  "alternate"
94567
94578
  ],
94579
+ ImportAttribute: [
94580
+ "key",
94581
+ "value"
94582
+ ],
94568
94583
  ImportDeclaration: [
94569
94584
  "specifiers",
94570
- "source"
94585
+ "source",
94586
+ "attributes"
94571
94587
  ],
94572
94588
  ImportDefaultSpecifier: [
94573
94589
  "local"
94574
94590
  ],
94575
94591
  ImportExpression: [
94576
- "source"
94592
+ "source",
94593
+ "options"
94577
94594
  ],
94578
94595
  ImportNamespaceSpecifier: [
94579
94596
  "local"
@@ -95582,7 +95599,7 @@ function requireEspree () {
95582
95599
  };
95583
95600
  };
95584
95601
 
95585
- const version$1 = "10.2.0";
95602
+ const version$1 = "10.3.0";
95586
95603
 
95587
95604
  /**
95588
95605
  * @fileoverview Main Espree file that converts Acorn into Esprima output.