MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / resumeTimersRecursively

Function resumeTimersRecursively

code/redux/public/app.js:7854–7861  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

7852};
7853
7854var resumeTimersRecursively = function (fiber) {
7855 if (fiber['return'] !== null) {
7856 resumeTimersRecursively(fiber['return']);
7857 }
7858 if (fiber._debugIsCurrentlyTiming) {
7859 beginFiberMark(fiber, null);
7860 }
7861};
7862
7863var resumeTimers = function () {
7864 // Resumes all measurements that were active during the last deferred loop.

Callers 1

resumeTimersFunction · 0.70

Calls 1

beginFiberMarkFunction · 0.70

Tested by

no test coverage detected