Rxova
Skip to content

commonRules

const commonRules: object;

Ready-made rules for products that must ship a composition checklist.

digit: object;
id: string = 'digit';
label: string = 'A number';
test: (password) => boolean;
ParameterType
passwordstring

boolean

lowercase: object;
id: string = 'lowercase';
label: string = 'A lowercase letter';
test: (password) => boolean;
ParameterType
passwordstring

boolean

symbol: object;
id: string = 'symbol';
label: string = 'A symbol';
test: (password) => boolean;
ParameterType
passwordstring

boolean

uppercase: object;
id: string = 'uppercase';
label: string = 'An uppercase letter';
test: (password) => boolean;
ParameterType
passwordstring

boolean