removed debugging line
All checks were successful
Build / Build NPM Project (push) Successful in 43s
Build / Tag Version (push) Successful in 8s
Build / Publish Documentation (push) Successful in 36s

This commit is contained in:
Zakary Timson 2025-05-15 16:47:35 -04:00
parent 2a7fa18c0e
commit 97f2bcce2e
5 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/utils",
"version": "0.25.1",
"version": "0.25.2",
"description": "Utility library",
"author": "Zak Timson",
"license": "MIT",

View File

@ -1,4 +1,4 @@
import {Collection} from './database.ts';
import {Collection} from './collection.ts';
import {deepCopy, JSONSanitize} from './objects.ts';
export type CacheOptions = {

View File

@ -34,7 +34,6 @@ export class Collection<K extends IDBValidKey, T> {
}
put(key: K, value: T): Promise<void> {
debugger;
return this.tx(this.collection, store => store.put(value, key));
}

View File

@ -4,7 +4,7 @@ export * from './aset';
export * from './cache';
export * from './color';
export * from './csv';
export * from './database';
export * from './collection';
export * from './files';
export * from './emitter';
export * from './errors';