UNPKG

validation-box

Version:

The only validation library - with flexible regex - you need.

6 lines (4 loc) 262 B
declare const validateSSN: (ssn: string) => boolean; declare const validatePhoneUS: (phone: string, requireCountryCode?: boolean) => boolean; declare const validateZIPCode: (zipCode: string) => boolean; export { validatePhoneUS, validateSSN, validateZIPCode };