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
In RFC 3986 Section 5.4 Reference Resolution Examples,
a relative URI reference //g against for the base URI http://a/b/c/d;p?q
should be resolved to http://g, whereas URI.js brings different result http://g/.
Here is a code.
var x = new URI("//g" , "http://a/b/c/d;p?q");
console.log(x.toString());
We get http://g/ in the console.
I expect it to be http://g.
The text was updated successfully, but these errors were encountered:
There is a case that does not match RFC 3986.
In RFC 3986 Section 5.4 Reference Resolution Examples,
a relative URI reference
//g
against for the base URIhttp://a/b/c/d;p?q
should be resolved to
http://g
, whereas URI.js brings different resulthttp://g/
.Here is a code.
We get
http://g/
in the console.I expect it to be
http://g
.The text was updated successfully, but these errors were encountered: