You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure this is debatable (though URI.js does it) that adding query string parameters can just have a single value - for example "&link" and not necessarily "&link=true"
If you pass only one arg to jsUri addQueryParameter you get the worst possible outcome: "&link="
But I this should produce just "&link"
new Uri(url).addQueryParam('link').toString()
The text was updated successfully, but these errors were encountered:
I'm not sure this is debatable (though URI.js does it) that adding query string parameters can just have a single value - for example "&link" and not necessarily "&link=true"
If you pass only one arg to jsUri addQueryParameter you get the worst possible outcome: "&link="
But I this should produce just "&link"
new Uri(url).addQueryParam('link').toString()
The text was updated successfully, but these errors were encountered: