window.requestAnimationFrame = function()

in src/helper/timeline.ts [196:206]


window.requestAnimationFrame = function (cb) {
    if (isMocking) {
        mockedRaf(cb);
        if (typeof rafCb === 'function') {
            rafCb(fixedFrameTime);
        }
    }
    else {
        nativeRaf(cb);
    }
};