Skip to content

Latest commit

 

History

History

minValue

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

minValue ts react-final-form react-intl

Checks if given number is smaller than given number

Example

const min5 = minValue(5);

min5(6) // undefined
min5(3) // { message: "validators.minValue", params: { 5 } };