basic-validate
v1.0.0
Published
basic validation library
Readme
Basic validation library
Installation and usage
npm install basic-validate
Import full library with direct access to all functions with imported name:
import * as Validate from 'basic-validate' used as Validation.isZero(10)
Imported single functions individually
import { isZero } from 'basic-validate' used as isZero(10)
Functions
isEmpty
Test whether a parameter is empty or not.
isEmpty('Hello') // falseisZero
Test whether a parameter is equal (===) to 0.
isZero(10) // falsecharsBetween
Test whether a parameter is between (and including) min and max characters.
charsBetween('Hello', 1, 10) // trueisEmail
Used to test whether a parameter meets email regular expression.
isEmail('[email protected]') // trueisTelephone
Used to test whether a parameter meets telephone regular expression.
isTelephone('079123456789') // trueisEqual
Used to test whether two parameters are equal (===)
isEqual('password', 'passw0rd') // false