Ghustavh97 / validator

All in one Javascript validator

Home Page:https://docs.oslllo.com/validator/master

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cover Image

CI/Test npm Coverage Status

Documentation, Installation, and Usage Instructions

See the full installation and usage documentation HERE.

The Objective

Create an all in one Javascript validator for my application(s).

The Problem / Why

I wanted an all in one JS validator.

Usage Examples

Check if value is actual NaN

const is = require("oslllo-validator");

is.actualNaN(NaN); // => True
is.actualNaN(null); // => False
is.actualNaN(undefined); // => False

Check if UUID

const is = require("oslllo-validator");

is.UUID("A987FBC9-4BED-3078-CF07-9141BA07C9F3", 3); // => True
is.UUID("xxxA987FBC9-4BED-3078-CF07-9141BA07C9F3", 3); // => False

Throw exception on false

If you want to throw an exception on false then check out oslllo-validator-exception HERE


About

All in one Javascript validator

https://docs.oslllo.com/validator/master

License:MIT License


Languages

Language:JavaScript 100.0%