Skip to content

Latest commit

 

History

History

minLength

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

minLength ts react-final-form react-intl

Checks if given string is smaller than minimum length

Example

const min5 = minLength(5);

min5("123456") // undefined
min5("1234") // { message: "validators.minLength", params: { length: 5 } }