File size: 235 Bytes
362ec6c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export const getOneNamespaceEffectsLoading = (
  namespace: string,
  effects: Record<string, boolean>,
  effectNames: Array<string>,
) => {
  return effectNames.some(
    (effectName) => effects[`${namespace}/${effectName}`],
  );
};