typanion icon indicating copy to clipboard operation
typanion copied to clipboard

Ability to reference another validation

Open stramel opened this issue 2 years ago • 0 comments

It would be nice to be able to reference another validation.

Something like:

password: t.applyCascade(t.isString(), [t.matchesRegex()]),
repeatPassword: t.applyCascade(t.isString(), [t.isOneOf(t.ref('password'))]),
//or
repeatPassword: t.applyCascade(t.isString(), [t.matchesRef('password')]),

stramel avatar Jul 30 '21 04:07 stramel