Skip to content
This repository has been archived by the owner on Oct 20, 2021. It is now read-only.

Latest commit

 

History

History
17 lines (12 loc) · 266 Bytes

lowercase.md

File metadata and controls

17 lines (12 loc) · 266 Bytes

Lowercase

Validates if the given input is lowercase.

Valid values:

validator.lowercase().validate('');
validator.lowercase().validate('foo');

Invalid values:

validator.lowercase().validate('Foo');
validator.lowercase().validate('fooBar');