- From: Steven Vachon <notifications@github.com>
- Date: Tue, 27 Dec 2016 16:01:59 -0800
- To: whatwg/url <url@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 28 December 2016 00:02:39 UTC
With the current public API of this standard, having no username and password is the same as having an empty username and password. ```js url = new URL("http://domain.com/") url.username==="" && url.password==="" //-> true ``` ```js url = new URL("http://:@domain.com/") url.username==="" && url.password==="" //-> true ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/url/issues/181#issuecomment-269400463
Received on Wednesday, 28 December 2016 00:02:39 UTC