Compare commits

..

4 Commits

Author SHA1 Message Date
5e4f493a21 2.0.13 2023-10-02 19:11:28 +02:00
62f32bd2ba fix(core): update 2023-10-02 19:11:27 +02:00
d537d04fb6 2.0.12 2023-10-02 19:10:31 +02:00
b1586354e9 fix(core): update 2023-10-02 19:10:30 +02:00
3 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/webstore",
"version": "2.0.11",
"version": "2.0.13",
"private": false,
"description": "high performance storage in the browser using indexed db",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/webstore',
version: '2.0.11',
version: '2.0.13',
description: 'high performance storage in the browser using indexed db'
}

View File

@ -7,7 +7,6 @@ export interface IWebStoreOptions {
export class WebStore<T = any> {
public db: plugins.idb.IDBPDatabase;
public objectStore: plugins.idb.IDBPObjectStore;
public options: IWebStoreOptions;
private initCalled: boolean = false;
private readyDeferred = plugins.smartpromise.defer();