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
Some times default value is needed. But I have to use such code with jas.
str, err := ctx.FindString(paths...) if err != nil { str = defaultStr }
It is a little strange. Why cannot do it like that.
str := ctx.RequireDefaultString(defaultStr, paths...)
The text was updated successfully, but these errors were encountered:
It is a nice feature to have.
Can you implement it, write a couple of test cases and send me a pull request?
Thank you.
Sorry, something went wrong.
No branches or pull requests
Some times default value is needed. But I have to use such code with jas.
It is a little strange. Why cannot do it like that.
The text was updated successfully, but these errors were encountered: