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
That's easy. Create a container with a numeric password like 123456. Export won't work as password will be converted to int. Need to do smth like this
this.parsedOptions.password.toString()
The text was updated successfully, but these errors were encountered:
Because of node-js-libs/cli#55
Sorry, something went wrong.
toString() will not help when value will be "007" for example as parseInt('007', 10).toString() === '7'.
toString()
parseInt('007', 10).toString() === '7'
So Bond, James Bond will not be happy.
Can you suggest some fresh mature cli pkg, that could replace https://github.com/node-js-libs/cli ?
No branches or pull requests
That's easy. Create a container with a numeric password like 123456. Export won't work as password will be converted to int.
Need to do smth like this
The text was updated successfully, but these errors were encountered: