@ztimson/utils 0.25.1 → 0.25.2

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.
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export * from './aset';
4
4
  export * from './cache';
5
5
  export * from './color';
6
6
  export * from './csv';
7
- export * from './database';
7
+ export * from './collection';
8
8
  export * from './files';
9
9
  export * from './emitter';
10
10
  export * from './errors';
package/dist/index.mjs CHANGED
@@ -427,7 +427,6 @@ class Collection {
427
427
  return this.tx(this.collection, (store) => store.count(), true);
428
428
  }
429
429
  put(key, value) {
430
- debugger;
431
430
  return this.tx(this.collection, (store) => store.put(value, key));
432
431
  }
433
432
  getAll() {