module FFaker::PhoneNumberCU

def international_country_code


International formats
def international_country_code
  rand(0..1).zero? ? "00#{country_code}" : "+#{country_code}"
end