I searched similar questions, but found no solution so far.
Lets say i have 2 separate fetches, my goal is to throttle them with one timer. Is there a simple way to achieve this? Something like:
const throttledFn1 = _.throttle(fn1, 500)
const throttledFn2 = _.throttle(fn2, 500)
useSharedTimer(throttledFn1, throttledFn2)