/*
 *  https://en.wikipedia.org/wiki/E.164
 *  Tries to convert the provided number to E.164 format
 */
export function convertToE164(number: string): string {
  return '+'.concat(
    number.replace(/\D/g, ''), // Remove all non-digit characters
  );
}
