import { E164_REGEX } from './constants';

export function validateE164(number: string): boolean {
  return E164_REGEX.test(number);
}
