@workglow/indexeddb 0.4.5 → 0.4.6
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/storage/node.js
CHANGED
|
@@ -1260,7 +1260,7 @@ class IndexedDbTabularStorage extends BaseTabularStorage {
|
|
|
1260
1260
|
return;
|
|
1261
1261
|
}
|
|
1262
1262
|
const db = await this.getDb();
|
|
1263
|
-
return new Promise(
|
|
1263
|
+
return new Promise((resolve, reject) => {
|
|
1264
1264
|
try {
|
|
1265
1265
|
const transaction = db.transaction(this.table, "readwrite");
|
|
1266
1266
|
const store = transaction.objectStore(this.table);
|
|
@@ -1760,4 +1760,4 @@ export {
|
|
|
1760
1760
|
runIndexedDbMigrationGroups
|
|
1761
1761
|
};
|
|
1762
1762
|
|
|
1763
|
-
//# debugId=
|
|
1763
|
+
//# debugId=299E025955F192AB64756E2164756E21
|