Skip to content

Commit c6afe65

Browse files
chore: formated the file
1 parent b58c226 commit c6afe65

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/stores/unstorage.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type UnstorageInstance = {
1515
export class UnstorageStore<
1616
E extends Env = Env,
1717
P extends string = string,
18-
I extends Input = Input
18+
I extends Input = Input,
1919
> implements Store<E, P, I>
2020
{
2121
/**
@@ -74,7 +74,7 @@ export class UnstorageStore<
7474
const result = await this.storage
7575
.get(this.prefixKey(key))
7676
.then((value) =>
77-
value ? (JSON.parse(String(value)) as ClientRateLimitInfo) : undefined
77+
value ? (JSON.parse(String(value)) as ClientRateLimitInfo) : undefined,
7878
);
7979

8080
return result;
@@ -157,7 +157,7 @@ export class UnstorageStore<
157157
*/
158158
private async updateRecord(
159159
key: string,
160-
payload: ClientRateLimitInfo
160+
payload: ClientRateLimitInfo,
161161
): Promise<void> {
162162
await this.storage.set(this.prefixKey(key), JSON.stringify(payload));
163163
}

0 commit comments

Comments
 (0)