We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67309b2 commit bc32593Copy full SHA for bc32593
src/wrapper.ts
@@ -24,14 +24,14 @@ export class DataLoaderCache<K extends NotUndefined, V> {
24
_cacheStore?: Keyv<V | null>;
25
_cacheKeyFn: (key: K) => string;
26
27
- name: string | undefined
+ name: string | undefined;
28
29
constructor(
30
batchLoadFn: BatchLoadFn<K, V | null>,
31
options: Options<K, V, string>,
32
) {
33
this._cacheKeyFn = options.cacheKeyFn;
34
- this.name = options.name
+ this.name = options.name;
35
36
let wrappedBatchLoadFn: BatchLoadFn<K, V | null>;
37
if (options.cache) {
0 commit comments