laiello-simple-validator

1.0.6 • Public • Published

laiello-simple-validator

A set of utility functions to test if the given string is in a valid US phone number format or email format.

Installation

npm i laiello-simple-validator

Example

// Import the functions 
import { isEmail, isPhoneNumber } from 'laiello-simple-validator'

// Usage 
const emailResult = isEmail('test@email.com') // returns true or flase
const phoneResult = isPhoneNumber('test@email.com') // return true or false

Functions

isEmail

Given a string, returns true if string is in email format using RegExp

Parameter Description
string Email user entered

isPhoneNumber

Given a string, returns true if string is in email format using RegExp. This will consiste of 10 digit phone numbers. Does not include the country code of '1'. Vaild formats are as follows: 1234567890, 123-456-7890, 123.456.7890, (123) 456-7890, 123 456 7890, (123)456-7890

Parameter Description
string Phone numer user entered

Readme

Keywords

none

Package Sidebar

Install

npm i laiello-simple-validator

Weekly Downloads

1

Version

1.0.6

License

ISC

Unpacked Size

6.71 kB

Total Files

7

Last publish

Collaborators

  • laiello