mirror of
https://github.com/tompro/sattle.git
synced 2026-08-27 07:15:59 +00:00
5 lines
213 B
TypeScript
5 lines
213 B
TypeScript
export const MIN_PASSWORD_LENGTH = 8;
|
|
|
|
export const passwordValid = (password: string, confirmation: string): boolean =>
|
|
password === '' || (password.length >= MIN_PASSWORD_LENGTH && password === confirmation);
|