cancelTimeout function

void cancelTimeout(
  1. Channel channel
)

Implementation

void cancelTimeout(Channel channel) {
  var timer = timers[channel.id];

  if (timer != null) {
    clearTimeout(timer);
    timers.remove(channel.id);
  }
}