@appsurify-testmap/rrdom-nodejs 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.
@@ -104,12 +104,12 @@ function getAugmentedNamespace(n) {
104
104
  a.prototype = f.prototype;
105
105
  } else a = {};
106
106
  Object.defineProperty(a, "__esModule", { value: true });
107
- Object.keys(n).forEach(function(k) {
108
- var d = Object.getOwnPropertyDescriptor(n, k);
109
- Object.defineProperty(a, k, d.get ? d : {
107
+ Object.keys(n).forEach(function(k2) {
108
+ var d = Object.getOwnPropertyDescriptor(n, k2);
109
+ Object.defineProperty(a, k2, d.get ? d : {
110
110
  enumerable: true,
111
111
  get: function() {
112
- return n[k];
112
+ return n[k2];
113
113
  }
114
114
  });
115
115
  });
@@ -533,7 +533,7 @@ function cloneNode(obj, parent) {
533
533
  } else if (i === "source") {
534
534
  cloned[i] = value;
535
535
  } else if (Array.isArray(value)) {
536
- cloned[i] = value.map((j) => cloneNode(j, cloned));
536
+ cloned[i] = value.map((j2) => cloneNode(j2, cloned));
537
537
  } else {
538
538
  if (type === "object" && value !== null) value = cloneNode(value);
539
539
  cloned[i] = value;
@@ -768,7 +768,7 @@ let Node$5 = class Node2 {
768
768
  }
769
769
  return result2;
770
770
  }
771
- toJSON(_, inputs) {
771
+ toJSON(_2, inputs) {
772
772
  let fixed = {};
773
773
  let emitInputs = inputs == null;
774
774
  inputs = inputs || /* @__PURE__ */ new Map();
@@ -2413,8 +2413,8 @@ let Parser$1 = class Parser {
2413
2413
  if (colon === false) return;
2414
2414
  let founded = 0;
2415
2415
  let token;
2416
- for (let j = colon - 1; j >= 0; j--) {
2417
- token = tokens[j];
2416
+ for (let j2 = colon - 1; j2 >= 0; j2--) {
2417
+ token = tokens[j2];
2418
2418
  if (token[0] !== "space") {
2419
2419
  founded += 1;
2420
2420
  if (founded === 2) break;
@@ -2532,8 +2532,8 @@ let Parser$1 = class Parser {
2532
2532
  } else if (token[1].toLowerCase() === "important") {
2533
2533
  let cache = tokens.slice(0);
2534
2534
  let str = "";
2535
- for (let j = i; j > 0; j--) {
2536
- let type = cache[j][0];
2535
+ for (let j2 = i; j2 > 0; j2--) {
2536
+ let type = cache[j2][0];
2537
2537
  if (str.trim().indexOf("!") === 0 && type !== "space") {
2538
2538
  break;
2539
2539
  }