@appsurify-testmap/rrdom 2.1.3-alpha.4 → 3.1.1-alpha.1

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.
@@ -210,12 +210,12 @@ function getAugmentedNamespace(n) {
210
210
  } else
211
211
  a = {};
212
212
  Object.defineProperty(a, "__esModule", { value: true });
213
- Object.keys(n).forEach(function(k) {
214
- var d = Object.getOwnPropertyDescriptor(n, k);
215
- Object.defineProperty(a, k, d.get ? d : {
213
+ Object.keys(n).forEach(function(k2) {
214
+ var d = Object.getOwnPropertyDescriptor(n, k2);
215
+ Object.defineProperty(a, k2, d.get ? d : {
216
216
  enumerable: true,
217
217
  get: function() {
218
- return n[k];
218
+ return n[k2];
219
219
  }
220
220
  });
221
221
  });
@@ -662,7 +662,7 @@ function cloneNode(obj, parent) {
662
662
  } else if (i === "source") {
663
663
  cloned[i] = value;
664
664
  } else if (Array.isArray(value)) {
665
- cloned[i] = value.map((j) => cloneNode(j, cloned));
665
+ cloned[i] = value.map((j2) => cloneNode(j2, cloned));
666
666
  } else {
667
667
  if (type === "object" && value !== null)
668
668
  value = cloneNode(value);
@@ -903,7 +903,7 @@ let Node$5 = class Node2 {
903
903
  }
904
904
  return result2;
905
905
  }
906
- toJSON(_, inputs) {
906
+ toJSON(_2, inputs) {
907
907
  let fixed = {};
908
908
  let emitInputs = inputs == null;
909
909
  inputs = inputs || /* @__PURE__ */ new Map();
@@ -2619,8 +2619,8 @@ let Parser$1 = class Parser {
2619
2619
  return;
2620
2620
  let founded = 0;
2621
2621
  let token;
2622
- for (let j = colon - 1; j >= 0; j--) {
2623
- token = tokens[j];
2622
+ for (let j2 = colon - 1; j2 >= 0; j2--) {
2623
+ token = tokens[j2];
2624
2624
  if (token[0] !== "space") {
2625
2625
  founded += 1;
2626
2626
  if (founded === 2)
@@ -2742,8 +2742,8 @@ let Parser$1 = class Parser {
2742
2742
  } else if (token[1].toLowerCase() === "important") {
2743
2743
  let cache = tokens.slice(0);
2744
2744
  let str = "";
2745
- for (let j = i; j > 0; j--) {
2746
- let type = cache[j][0];
2745
+ for (let j2 = i; j2 > 0; j2--) {
2746
+ let type = cache[j2][0];
2747
2747
  if (str.trim().indexOf("!") === 0 && type !== "space") {
2748
2748
  break;
2749
2749
  }