I'm disconnecting audio nodes (GainNode, StereoPannerNode) and reusing them later in another situation at another time (to reduce GC activity). Should I cancel all automation events on AudioParams of the node (should I call for example node.gain.cancelScheduledValues()) or it's done automatically when calling node.disconnect()?
I didn't find any details in the documentation at MDN, so I assume the AudioParams may still be changing after a node is disconnected.