When navigating to "test.html" from "http://example.com/somewhere.html?a=b#c", I expect the URL to be "http://example.com/test.html", not "http://example.com/test.html?a=b". Here's simple node REPL code to replicate it. ``` var URI = require('./URI'); URI('asdf', 'http://example.com/somewhere.html?a=b#c').toString(); ```