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