Skip to content
/ pw Public

Simple js password checker for ramda users

Notifications You must be signed in to change notification settings

crshmk/pw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

requires ramda

npm i github:crshmk/pw
import { 
  isStrongPassword, 
  getPasswordMessage 
} from 'pw'

getPasswordMessage('a')
// 'Password must be at least 10 characters'

getPasswordMessage('aaaaaaaaaa')
// 'Password must have at least one number'

getPasswordMessage('0123456789')
// 'Password must have at least one character'

getPasswordMessage('0123456789a')
// 'Password must have at least one of the following symbols: !@#$%^&*()<>?{}'

getPasswordMessage('0123456789a?')
// ''

isStrongPassword('0123456789a?')
// true 

About

Simple js password checker for ramda users

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published