module FFaker::PhoneNumberFR

def number(prefixes, country_prefix = '')

def number(prefixes, country_prefix = '')
  space  = random_space
  prefix = fetch_sample(prefixes)
  prefix = prefix[1] unless country_prefix == ''
  FFaker.numerify [
    country_prefix,
    space,
    prefix,
    fetch_sample(PHONE_NUMBER)
  ].join.strip
end