sha256 / Pristine

Vanilla javascript form validation micro-library
https://pristine.js.org/
MIT License
410 stars 81 forks source link

Required allow whitespace? #72

Open 1ucay opened 3 years ago

1ucay commented 3 years ago

Hi, how can I prevent whitespace on input required? https://stackoverflow.com/questions/13766015/is-it-possible-to-configure-a-required-field-to-ignore-white-space

1ucay commented 3 years ago

I solved by this way Validate.addValidator('required', function(value, param1, param2) { return ( value.trim() !== '' ); }, "", 5, false);