aboutsummaryrefslogtreecommitdiff
path: root/src/webpack/webpack.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webpack/webpack.ts')
-rw-r--r--src/webpack/webpack.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts
index e537740..5aa7dc7 100644
--- a/src/webpack/webpack.ts
+++ b/src/webpack/webpack.ts
@@ -50,7 +50,7 @@ export const filters = {
}
return true;
},
- byDisplayName: (name: string): FilterFn => m =>
+ byStoreName: (name: string): FilterFn => m =>
m.constructor?.displayName === name
};
@@ -331,15 +331,15 @@ export function findByCodeLazy(...code: string[]) {
/**
* Find a store by its displayName
*/
-export function findByDisplayName(name: string) {
- return find(filters.byDisplayName(name));
+export function findStore(name: string) {
+ return find(filters.byStoreName(name));
}
/**
* findByDisplayName but lazy
*/
-export function findByDisplayNameLazy(name: string) {
- return findLazy(filters.byDisplayName(name));
+export function findStoreLazy(name: string) {
+ return findLazy(filters.byStoreName(name));
}
/**