Function chewdata::updater::tera_helpers::function::faker::currency_symbol

source ·
pub fn currency_symbol(_args: &HashMap<String, Value>) -> Result<Value>
Expand description

Generate currency symbol

§Examples

use std::collections::HashMap;
use chewdata::updater::tera_helpers::function::faker::currency_symbol;

let mut args = HashMap::new();
let currency_symbol = currency_symbol(&args);
assert!(currency_symbol.is_ok());