removed debugging line
This commit is contained in:
parent
2a7fa18c0e
commit
97f2bcce2e
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ztimson/utils",
|
||||
"version": "0.25.1",
|
||||
"version": "0.25.2",
|
||||
"description": "Utility library",
|
||||
"author": "Zak Timson",
|
||||
"license": "MIT",
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {Collection} from './database.ts';
|
||||
import {Collection} from './collection.ts';
|
||||
import {deepCopy, JSONSanitize} from './objects.ts';
|
||||
|
||||
export type CacheOptions = {
|
||||
|
@ -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));
|
||||
}
|
||||
|
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user