-
Notifications
You must be signed in to change notification settings - Fork 476
New issue
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
Global "duplicates" parameter #51
Comments
how exactly are you using URI.js? (what are you doing and what are you expecting exactly) |
My points: GoalI want to replace all my utility methods about URI modifications by a lib doing it the proper way. I mostly modify query strings and compare URI. Question about duplicatesEvent if I cannot find a case yet where I need to send duplicates, my utility methods do not prevent me to do that. I do not want a regression on that specific point by switching to the URI lib. ConsistencyIf URI.buildQuery() offers me a way to choose if whether or not I want duplicates, why uri.addQuery() cannot? |
hell no. All that is defined is the syntax - but nobody every said anything about semantics. This lead to a lot of different implementations regarding the handling of query strings. v1.8.0 is on the doorstep (waiting a couple of days for some possible fix in QUnit). I've already introduced (I'll close the ticket once v1.8.0 is out) |
Great, many thanks! |
Issue resolved with v1.8.0 |
Hi and thanks for this great lib!
Working with an URI instance, I cannot find a way to prevent it to remove duplicates (as URI.buildQuery() offers).
Is it possible to have a global flag like : URI.allowDuplicates = true
And / or something on an instance like : uri.allowDuplicates(true)
Thanks!
The text was updated successfully, but these errors were encountered: