1 2 3 4 5 6 7 8
use crate::ctx::GenContext; use super::helpers::locale_to_phone_code; pub fn gen(ctx: &mut GenContext<'_>, buf: &mut String) { let loc = ctx.locale(); buf.push_str(locale_to_phone_code(loc.code)); }