12 implement twilio sms #37

Merged
BenjaminPalko merged 26 commits from 12-implement-twilio-sms into master 2025-01-02 20:11:28 -05:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit d7479cd34f - Show all commits

1
src/lib/regex/index.ts Normal file
View file

@ -0,0 +1 @@
export * from './phone';

1
src/lib/regex/phone.ts Normal file
View file

@ -0,0 +1 @@
export const PhoneRegex = /^(1-)?\d{3}-?\d{3}-?\d{4}$/;