mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-08 08:08:39 +00:00
4 lines
116 B
Rust
4 lines
116 B
Rust
use std::time::Duration;
|
|
|
|
pub fn jitter(duration: Duration) -> Duration { duration.mul_f64(rand::random::<f64>()) }
|