module FFaker::Internet

def safe_email(name = nil)

Experimental RBS support (using type sampling data from the type_fusion project).

def safe_email: (?nil name) -> String

This signature was generated using 1 sample from 1 application.

def safe_email(name = nil)
  [user_name(name), fetch_sample(SAFE_DOMAIN_SUFFIXES)].join('@example.')
end