mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-19 21:07:35 +08:00
3 lines
151 B
JavaScript
3 lines
151 B
JavaScript
export const isPhoneE164 = value => !!value.match(/^\+[1-9]\d{1,14}$/);
|
|
export const isPhoneE164OrEmpty = value => isPhoneE164(value) || value === '';
|