├── .babelrc ├── .gitignore ├── LICENSE.md ├── README.md ├── demo └── index.html ├── gulpfile.js ├── index.html ├── package.json ├── src ├── images │ └── demo.gif └── js │ ├── demo.js │ └── validator.js ├── tests ├── ValidatorTest.js ├── alpha.js ├── alphaNum.js ├── blank.js ├── dateISO.js ├── email.js ├── integer.js ├── numeric.js ├── phone.js ├── required.js └── url.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | *.log 4 | .nyc_output -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/demo/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/package.json -------------------------------------------------------------------------------- /src/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/src/images/demo.gif -------------------------------------------------------------------------------- /src/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/src/js/demo.js -------------------------------------------------------------------------------- /src/js/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/src/js/validator.js -------------------------------------------------------------------------------- /tests/ValidatorTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/ValidatorTest.js -------------------------------------------------------------------------------- /tests/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/alpha.js -------------------------------------------------------------------------------- /tests/alphaNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/alphaNum.js -------------------------------------------------------------------------------- /tests/blank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/blank.js -------------------------------------------------------------------------------- /tests/dateISO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/dateISO.js -------------------------------------------------------------------------------- /tests/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/email.js -------------------------------------------------------------------------------- /tests/integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/integer.js -------------------------------------------------------------------------------- /tests/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/numeric.js -------------------------------------------------------------------------------- /tests/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/phone.js -------------------------------------------------------------------------------- /tests/required.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/required.js -------------------------------------------------------------------------------- /tests/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/tests/url.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocanto/easiest-js-validator/HEAD/yarn.lock --------------------------------------------------------------------------------