@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/cache.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Collection } from './database.ts';
1
+ import { Collection } from './collection.ts';
2
2
  export type CacheOptions = {
3
3
  /** Delete keys automatically after x amount of seconds */
4
4
  ttl?: number;
package/dist/index.cjs CHANGED
@@ -431,7 +431,6 @@ ${opts.message || this.desc}`;
431
431
  return this.tx(this.collection, (store) => store.count(), true);
432
432
  }
433
433
  put(key, value) {
434
- debugger;
435
434
  return this.tx(this.collection, (store) => store.put(value, key));
436
435
  }
437
436
  getAll() {