typst_shim/stable/
utils.rs

1//! Typst utils
2pub use typst::utils::*;
3
4/// Round a value to two decimal places.
5pub fn round_2(value: f64) -> f64 {
6    round_with_precision(value, 2)
7}