Docs
/
validators

Validators

A collection of validators for common data types

isEmail

Link Copied!

Check if any given value is a valid email address.

true
Result

isNumber

Link Copied!

Check if any given value is a valid number.

false
Result

isUrl

Link Copied!

Check if any given value is a valid URL.

true
Result

isEmpty

Link Copied!

Check if any given string, array or object is empty.

true
Result

isUuid

Link Copied!

Check if any given value is a valid UUID.

true
Result

isJson

Link Copied!

Check if any given value is a valid JSON string.

true
Result

isObject

Link Copied!

Check if any given value is an object.

true
Result

isArray

Link Copied!

Check if any given value is an array.

true
Result

isHex

Link Copied!

Check if any given value is a valid hexadecimal color code.

true
Result

isAlphabetic

Link Copied!

Check if any given value contains only alphabetic characters.

true
Result

isAlphanumeric

Link Copied!

Check if any given value contains only alphanumeric characters.

true
Result

isBoolean

Link Copied!

Check if any given value is a boolean value.

true
Result

isUndefined

Link Copied!

Check if any given value is undefined.

true
Result

isNull

Link Copied!

Check if any given value is null.

true
Result

isDate

Link Copied!

Check if any given value is a valid Date object.

true
Result

isTime

Link Copied!

Check if any given value is a valid time in HH:mm format.

true
Result

isLeapYear

Link Copied!

Check if any given value year is a leap year.

true
Result

isEven

Link Copied!

Check if the number is even.

true
Result

isOdd

Link Copied!

Check if the number is odd.

true
Result

isPositive

Link Copied!

Check if the number is positive.

true
Result

isNegative

Link Copied!

Check if the number is negative.

true
Result

isZero

Link Copied!

Check if the number is zero.

true
Result

isOver9000

Link Copied!

Check if the number is over 9000.

false
Result

isPrime

Link Copied!

Check if the number is a prime number.

false
Result

isInteger

Link Copied!

Check if the number is an integer.

true
Result

isFloat

Link Copied!

Check if the number is a float.

true
Result

isBetween

Link Copied!

Check if the number is between the specified range.

false
Result

isDivisibleBy

Link Copied!

Check if the number is divisible by the specified number.

true
Result

isCreditCard

Link Copied!

Check if any given value is a valid credit card number.

true
Result

isLatLng

Link Copied!

Check if any given value is a valid latitude-longitude coordinate in the format lat,lng or lat,lng.

true
Result

isLatitude

Link Copied!

Check if any given value is a valid latitude coordinate.

true
Result

isLongitude

Link Copied!

Check if any given value is a valid longitude coordinate.

true
Result

isIpAddress

Link Copied!

Check if any given value is a valid IP address.

isPort

Link Copied!

Check if any given value is a valid port number.

true
Result

isMacAddress

Link Copied!

Check if any given value is a valid MAC address.

true
Result