@neutrium/formatter - v1.0.1
    Preparing search index...

    Type Alias RoundingMode

    RoundingMode:
        | "ceil"
        | "floor"
        | "expand"
        | "trunc"
        | "halfCeil"
        | "halfFloor"
        | "halfExpand"
        | "halfTrunc"
        | "halfEven"

    Rounding direction names accepted by modern Intl.NumberFormat.

    ceil and floor round toward positive and negative infinity; expand and trunc round away from and toward zero. The half* modes apply the named direction only to ties, with halfEven selecting the nearest even result.