During app development, I sometimes iterate through multiple versions of my app with small updates. There is the standard update() function which will run during these iterations, and in there you can call functions like unsubscribe().
But is there a way to cancel all past calls to runIn()?
In one of my iterations I had used runEvery1Minute() and that was not being removed because I had also removed the call to unschedule() in the update() function thinking I didn't need it anymore. ooops.