1.0.2 • Published 1 year ago

fieldsafe v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@ 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/fieldsafe@1.0.2/core/scripts/fieldsafe.min.js"></script>

Initialization

const validator = new Validation();
const isEmail = validator.email('guest@test.com');

console.log(isEmail) // true

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