segno (Segnosaurus). Validation library for Deno π¦. Enforcing a high security standard.
Repository
Current version released
4 years ago
segno - deno validation library
segno (Segnosaurus). Validation library for Deno π¦. Enforcing a high security standard.
Notice
This library will be partially ported from validator.js, please check their license.
Example
import { segno, isIP } from 'https://deno.land/x/segno/mod.ts';
console.log(segno.isEmail('foo@example.org')); // true
console.log(isIP('127.0.0.1')); // true
Documentation
A detailed documentation will follow. For now please visit the validator.js docs. However, keep in mind that EVERYTHING was converted to camelCase. Meaning all options must be written in camelCase. Also; not all functions may be exactly implemented as described there.