typst_shim/stable/
utils.rs

1
2
3
4
5
6
7
//! Typst utils
pub use typst::utils::*;

/// Round a value to two decimal places.
pub fn round_2(value: f64) -> f64 {
    round_with_precision(value, 2)
}