Formats a phone number to the specified format.
The formatting parameters
A ServiceResult containing the formatted phone number or an error
const result = formatPhoneNumber({ phoneNumber: "(555) 123-4567", format: "E.164" });if (isSuccess(result)) { console.log(result.value); // "+15551234567"} Copy
const result = formatPhoneNumber({ phoneNumber: "(555) 123-4567", format: "E.164" });if (isSuccess(result)) { console.log(result.value); // "+15551234567"}
Formats a phone number to the specified format.