github.com/MontFerret/ferret@v0.18.0/pkg/drivers/cdp/input/helpers.go (about)

     1  package input
     2  
     3  import (
     4  	"time"
     5  
     6  	"github.com/MontFerret/ferret/pkg/runtime/core"
     7  )
     8  
     9  func randomDuration(delay int) time.Duration {
    10  	return time.Duration(core.Random2(float64(delay)))
    11  }