native-document 1.0.271 → 1.0.272

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.
@@ -112,7 +112,6 @@ const ComponentRegistry = (function() {
112
112
  },
113
113
  registerTimer(id, timerId, cleaner) {
114
114
  const timers = timerRegistry.get(id);
115
- console.log({ timers, id, cleaner })
116
115
  if (!timers) {
117
116
  timerRegistry.set(id, [{timerId, cleaner}]);
118
117
  return;
@@ -121,7 +120,6 @@ const ComponentRegistry = (function() {
121
120
  },
122
121
  cleanTimer(id) {
123
122
  const timers = timerRegistry.get(id);
124
- console.log({ timers });
125
123
  if (!timers) {
126
124
  return;
127
125
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-document",
3
- "version": "1.0.271",
3
+ "version": "1.0.272",
4
4
  "description": "A reactive JavaScript framework that preserves native DOM simplicity without sacrificing modern features",
5
5
  "author": "AfroCodeur <https://github.com/afrocodeur>",
6
6
  "license": "MIT",