umya_spreadsheet/helper/
string_helper.rs1#[inline]
2pub(crate) fn _get_currency_code() -> String {
3 String::new()
4}
5
6#[inline]
7pub(crate) fn _get_decimal_separator() -> String {
8 String::from(".")
9}
10
11#[inline]
12pub(crate) fn _get_thousands_separator() -> String {
13 String::from(",")
14}