Most voted "indicative" questions
Indicative is a data validation library for validating complex data objects, defining a human-readable scheme.
Learn more…2 questions
Sort by count of
-
7
votes2
answers421
viewsHow to apply conditions in this string template?
Currently I own this object: const messages = { required: field => `${field} é obrigatório e naõ foi preenchido!`, } That prints the following value: name é obrigatório e não foi preenchido! I…
-
0
votes1
answer281
viewsValidation of regex with Indicative (adonisJs)
I am trying to validate a CPF with regex using the Adonis Database. I tried that way: const { validations } = use('indicative/validator') const { validate } = use('Validator') const rules = (values)…