You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
The following piece of code raises "TypeError: Cannot read property 'length' of null" exception in Zone._updateTaskCount:
this._interval1 = setInterval(() => {
// clear interval for the first time
clearInterval(this._interval1);
}, 100);
setTimeout(() => {
// a bit later clear the destroyed interval - exception
clearInterval(this._interval1);
}, 200);
As I understand, duplicate call to clearInterval on the same interval should not raise an exception (and doesn't do it with standard implementation in browsers).