Thank you for this library.
I'm trying to create a custom validator using createValidator helper
In the message I need use current value, how to achieve this?
It looks something like this
const myValidator = createValidator(
message => value => message,
(field, value) => `${field} has value ${value}`
);