typst-shim 0.13.24

A compatibility layer for Typst release and mainline versions.
Documentation
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)
}