Skip to content

ianpatricck/fieldsafe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@ FieldSafe

Security and persistence of your app data

Library to assist in the development of security for form fields, with validation by RegEx, Sanitization and Mask in inputs.

<script src="https://unpkg.com/[email protected]/core/scripts/fieldsafe.min.js"></script>

Initialization

const validator = new Validation();
const isEmail = validator.email('[email protected]');

console.log(isEmail) // true

Other concepts and examples will be discussed in this project's Wiki.