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
we can configure options this way:
let form = new Formidable({ key:value })
and form.set(key,value) or form.set({key:value})
form.set(key,value)
form.set({key:value})
instead of repeatedly
form.key1=value form.key2=value form.key3=value
so, we can shortcut the command as the following:
new Formidable({...options}).parse(...)
The text was updated successfully, but these errors were encountered:
good idea
Sorry, something went wrong.
You can do it that way currently too. I always did it that way. Readme/docs updates are coming.
Good news
Successfully merging a pull request may close this issue.
we can configure options this way:
and
form.set(key,value)
orform.set({key:value})
instead of repeatedly
so, we can shortcut the command as the following:
The text was updated successfully, but these errors were encountered: