We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gpwd-h
It is new command.
$ gpwd-h applebananapine $ gpwd-h --caps AppleBananaPine
~/.gpwd.json
{ "length": 8, "strength": "normal", "secure": false, "human": { "length": 8, "caps": false, "secure":false } }
genPassword.gen() → genPassword.generate()
genPassword.gen()
genPassword.generate()
current
module.exports = class genPassword { // ..... }
after
//------------------- // lib/genPassword.js //------------------- class genPassword { // ..... } //------------------- // lib/genPasswordHuman.js //------------------- class genPasswordHuman{ // ..... } //------------------- // index.js //------------------- module.exports = require("./lib/genPassword"); module.exports.human = require("./lib/genPasswordHuman");
example
const genPassword = require("../index.js"); const passwd = new genPassword(); const genPasswordHuman = require("../index.js").human; const passwdh = new genPasswordHuman();
The text was updated successfully, but these errors were encountered:
English dictionary
License
Sorry, something went wrong.
add lib/, bin/gpwd-h.js #13
649b032
add lib/util.js #13
c13cf0e
rename gen() -> generate() #13
10bcb48
katsube
No branches or pull requests
It is new command.
option
update configuration file
~/.gpwd.json
etc
change method name
genPassword.gen()
→genPassword.generate()
change module.exports style
current
after
example
The text was updated successfully, but these errors were encountered: