Function chewdata::updater::tera_helpers::function::faker::first_name

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

Generate first name

§Examples

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

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