mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-11 01:27:30 +00:00
6 lines
120 B
Rust
6 lines
120 B
Rust
![]() |
use std::time::Duration;
|
||
|
|
||
|
pub fn jitter(duration: Duration) -> Duration {
|
||
|
duration.mul_f64(rand::random::<f64>())
|
||
|
}
|