umya_spreadsheet/helper/
string_helper.rs

1
2
3
4
5
6
7
8
9
10
11
pub(crate) fn _get_currency_code() -> String {
    String::from("")
}

pub(crate) fn _get_decimal_separator() -> String {
    String::from(".")
}

pub(crate) fn _get_thousands_separator() -> String {
    String::from(",")
}