diff options
author | Florian Dold <florian@dold.me> | 2022-02-10 19:52:45 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-02-10 19:53:44 +0100 |
commit | 5ff3b44550d4f5ab9a20d85dbf4387d455ebb862 (patch) | |
tree | 7db62fdc0a87338a4e7fc8dcb51f80fb00d789e4 /packages/idb-bridge/src/util/makeStoreKeyValue.ts | |
parent | 1de423834d0a9ca34b10de39e7e51570415f1ed5 (diff) |
idb-bridge: update tests for ava 4.x
Diffstat (limited to 'packages/idb-bridge/src/util/makeStoreKeyValue.ts')
-rw-r--r-- | packages/idb-bridge/src/util/makeStoreKeyValue.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/idb-bridge/src/util/makeStoreKeyValue.ts b/packages/idb-bridge/src/util/makeStoreKeyValue.ts index c0fdb19a7..4c7dab8d2 100644 --- a/packages/idb-bridge/src/util/makeStoreKeyValue.ts +++ b/packages/idb-bridge/src/util/makeStoreKeyValue.ts @@ -14,11 +14,11 @@ permissions and limitations under the License. */ -import { extractKey } from "./extractKey"; -import { DataCloneError, DataError } from "./errors"; -import { valueToKey } from "./valueToKey"; -import { structuredClone } from "./structuredClone"; -import { IDBKeyPath, IDBValidKey } from "../idbtypes"; +import { extractKey } from "./extractKey.js"; +import { DataCloneError, DataError } from "./errors.js"; +import { valueToKey } from "./valueToKey.js"; +import { structuredClone } from "./structuredClone.js"; +import { IDBKeyPath, IDBValidKey } from "../idbtypes.js"; export interface StoreKeyResult { updatedKeyGenerator: number; |