parent
c492de8b67
commit
bb8e4f31ee
@ -0,0 +1,15 @@
|
||||
function validation<T>(condition: (value: T) => boolean, message: string) {
|
||||
return (value: T) => {
|
||||
if (condition(value)) {
|
||||
return null;
|
||||
} else {
|
||||
return message;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
const FormUtils = {
|
||||
validation,
|
||||
};
|
||||
|
||||
export default FormUtils;
|
Loading…
Reference in new issue