@fruit-ui/core 1.2.3 → 1.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fruit-ui/core",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "A vanilla JS toolkit for reactive UI",
5
5
  "main": "src/index.js",
6
6
  "homepage": "https://asantagata.github.io/fruit-ui/",
package/src/index.js CHANGED
@@ -485,7 +485,6 @@ function evaluateMemo(component) {
485
485
  if (typeof component.memo === 'function') return !!component.memo.call(this);
486
486
  const equal = deepEqual(component.memo, this.memo);
487
487
  this.memo = structuredClone(component.memo);
488
- console.log(this.memo);
489
488
  return equal;
490
489
  } else return false;
491
490
  }