You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import { instance, PhoneNumberFormat } from './libphonenumberInstance';
|
|
|
|
export function parsePhoneNumber(
|
|
phoneNumber: string,
|
|
options: {
|
|
regionCode: string;
|
|
}
|
|
): string {
|
|
const { regionCode } = options;
|
|
const parsedNumber = instance.parse(phoneNumber, regionCode);
|
|
|
|
if (instance.isValidNumber(parsedNumber)) {
|
|
return instance.format(parsedNumber, PhoneNumberFormat.E164);
|
|
}
|
|
|
|
return phoneNumber;
|
|
}
|