github.com/itsabgr/go-handy@v0.0.0-20220724000257-022d51f2b9c6/Stop.go (about)

     1  package handy
     2  
     3  import "time"
     4  
     5  func Stop(t *time.Timer) {
     6  	for !t.Stop() {
     7  		_ = <-t.C
     8  	}
     9  }