get-express-starter
Version:
Get production ready express boilerplate with a single command
10 lines (9 loc) • 319 B
text/typescript
export const password = (value: any, helpers: any) => {
if (value.length < 8) {
return helpers.message('password must be at least 8 characters');
}
if (!value.match(/\d/) || !value.match(/[a-zA-Z]/)) {
return helpers.message('password must contain at least 1 letter and 1 number');
}
return value;
};