@tarojs/runtime 3.6.24-nightly.8 → 3.6.24-patch.0

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.
@@ -44,6 +44,7 @@ interface AddEventListenerOptions extends EventListenerOptions {
44
44
  once?: boolean;
45
45
  passive?: boolean;
46
46
  }
47
+ // eslint-disable-next-line @typescript-eslint/ban-types
47
48
  interface EventHandler extends Function {
48
49
  _stop?: boolean;
49
50
  }
@@ -2402,6 +2402,7 @@ function cloneNode(isDeep = false) {
2402
2402
  }
2403
2403
  for (const key in this) {
2404
2404
  const value = this[key];
2405
+ // eslint-disable-next-line valid-typeof
2405
2406
  if ([PROPS, DATASET].includes(key) && typeof value === OBJECT) {
2406
2407
  newNode[key] = Object.assign({}, value);
2407
2408
  }