fixword
v1.0.4
Published
A nodejs package with a leetspeak randomizer for making usernames unique. Also has a password strength checking function.
Downloads
6
Readme
FixWord
A nodejs package with a leetspeak randomizer for making usernames unique. Also has a password strength checking function.
npm install fixword
const {get_alts, get_strength} = require("fixword")
console.log(get_alts("sarthyparty", 5, 0.3))
// Returns a list of 5 alternative usernames with 30% of its letters swapped for LeetSpeak
console.log(get_strength("NotActuallyMyP4$$"))
// Returns Strong, Medium, or Weak, based on the OWASP guidlines