Rxova
Skip to content

parsePhone

function parsePhone(input, defaultCountry?): ParsedPhone;

Interpret raw input.

Three shapes are accepted, because users paste all three:

  • +44 20 7123 4567 — explicit international, the country comes from the calling code and defaultCountry is ignored
  • 0044 20 … — the 00 international prefix, treated identically
  • 020 7123 4567 — national, interpreted against defaultCountry
ParameterType
inputstring
defaultCountry?string

ParsedPhone