Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 377 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 377 Bytes

Code kata: Password Validator

Description

This function checks if a password is strong. For it, the password must meet the following conditions:

  • Be at least six characters long
  • Contain some numbers
  • Contain some uppercase letter
  • Contain some lowercase letter
  • Contain some underscore

Run project

Install

npm install

Run test

npm test