From fb2e2f89935240666de66e4b2c11125cb3b2943d Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 7 Apr 2020 13:37:32 +0530 Subject: more lint fixes --- src/util/query.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/util/query.ts') diff --git a/src/util/query.ts b/src/util/query.ts index 256395d42..8dd3ff1e2 100644 --- a/src/util/query.ts +++ b/src/util/query.ts @@ -292,7 +292,11 @@ export class TransactionHandle { return requestToPromise(req); } - mutate(store: Store, key: any, f: (x: T) => T | undefined): Promise { + mutate( + store: Store, + key: any, + f: (x: T) => T | undefined, + ): Promise { const req = this.tx.objectStore(store.name).openCursor(key); return applyMutation(req, f); } -- cgit v1.2.3