summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/src/util/makeStoreKeyValue.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/idb-bridge/src/util/makeStoreKeyValue.ts')
-rw-r--r--packages/idb-bridge/src/util/makeStoreKeyValue.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/idb-bridge/src/util/makeStoreKeyValue.ts b/packages/idb-bridge/src/util/makeStoreKeyValue.ts
index 9b33158dd..f9006ef51 100644
--- a/packages/idb-bridge/src/util/makeStoreKeyValue.ts
+++ b/packages/idb-bridge/src/util/makeStoreKeyValue.ts
@@ -14,7 +14,6 @@
permissions and limitations under the License.
*/
-
import { Value, Key, KeyPath } from "./types";
import extractKey from "./extractKey";
import { DataError } from "./errors";
@@ -93,7 +92,7 @@ export function makeStoreKeyValue(
key: key,
value: value,
updatedKeyGenerator,
- }
+ };
} else {
// (no, yes, no)
key = extractKey(keyPath!, value);
@@ -111,7 +110,7 @@ export function makeStoreKeyValue(
key: currentKeyGenerator,
value: value,
updatedKeyGenerator: currentKeyGenerator + 1,
- }
+ };
} else {
// (no, no, no)
throw new DataError();