Skip to content

Commit bc32593

Browse files
committed
style: resolve format issue
1 parent 67309b2 commit bc32593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wrapper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ export class DataLoaderCache<K extends NotUndefined, V> {
2424
_cacheStore?: Keyv<V | null>;
2525
_cacheKeyFn: (key: K) => string;
2626

27-
name: string | undefined
27+
name: string | undefined;
2828

2929
constructor(
3030
batchLoadFn: BatchLoadFn<K, V | null>,
3131
options: Options<K, V, string>,
3232
) {
3333
this._cacheKeyFn = options.cacheKeyFn;
34-
this.name = options.name
34+
this.name = options.name;
3535

3636
let wrappedBatchLoadFn: BatchLoadFn<K, V | null>;
3737
if (options.cache) {

0 commit comments

Comments
 (0)