mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
5 lines
237 B
JavaScript
5 lines
237 B
JavaScript
export const isPhoneE164 = value => !!value.match(/^\+[1-9]\d{1,14}$/);
|
|
export const isPhoneE164OrEmpty = value => isPhoneE164(value) || value === '';
|
|
export const shouldBeUrl = (value = '') =>
|
|
value ? value.startsWith('http') : true;
|