mockedIntervalClear = function()

in src/helper/timeline.ts [141:148]


mockedIntervalClear = function (id) {
    const idx = intervalHandlers.findIndex(handler => {
        return handler.id === id;
    });
    if (idx >= 0) {
        intervalHandlers.splice(idx, 1);
    }
}