Skip to content

Instantly share code, notes, and snippets.

@avcs06
Last active June 29, 2022 08:31
Show Gist options
  • Save avcs06/52af2e292e1c964f0e564447c03526dd to your computer and use it in GitHub Desktop.
Save avcs06/52af2e292e1c964f0e564447c03526dd to your computer and use it in GitHub Desktop.
Execute the effect when atleast one of the dependancies is truthy
import { useEffect } from 'react';
const useSomeEffect = (callback, deps) => {
useEffect(() => {
if (deps.reduce((a, c) => a || Boolean(c), false)) callback();
}, deps);
};
export default useSomeEffect;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment